From 49a5378de1ea06d03a8cd61bc4ae03108824bdb5 Mon Sep 17 00:00:00 2001 From: Aman Sharma Date: Thu, 12 Dec 2019 19:45:50 +0530 Subject: [PATCH] Add missing colon after `[error]` --- docs/develop/testing-rules/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/develop/testing-rules/index.md b/docs/develop/testing-rules/index.md index c9110d49719..f88cab7f411 100644 --- a/docs/develop/testing-rules/index.md +++ b/docs/develop/testing-rules/index.md @@ -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') ``` @@ -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') ```