Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

docs: add missing colon after [error] #4903

Merged
merged 1 commit into from Dec 13, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/develop/testing-rules/index.md
Expand Up @@ -111,7 +111,7 @@ const tree = 5;
~~~~ [error % ("plants")]
const skyscraper = 100;

[error] Variables named after %s are not allowed!
[error]: Variables named after %s are not allowed!
[no-animal]: error % ('animals')
```

Expand All @@ -136,7 +136,7 @@ const tree = 5;
~~~~ [error % ("plants", "tree")]
const skyscraper = 100;

[error] Variables named after %s are not allowed: '%s'
[error]: Variables named after %s are not allowed: '%s'
[no-animal]: error % ('animals')
```

Expand Down