From 13050a2139dfe0cd28f5a62bb570195188572988 Mon Sep 17 00:00:00 2001 From: Nitin Kumar Date: Fri, 29 Oct 2021 18:30:51 -0700 Subject: [PATCH] docs: fix typo in `working-with-rules.md` --- docs/developer-guide/working-with-rules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developer-guide/working-with-rules.md b/docs/developer-guide/working-with-rules.md index 269789e7188..ee5a5606fac 100644 --- a/docs/developer-guide/working-with-rules.md +++ b/docs/developer-guide/working-with-rules.md @@ -531,7 +531,7 @@ module.exports = { }; ``` -Once you have an instance of `SourceCode`, you can use the methods on it to work with the code: +Once you have an instance of `SourceCode`, you can use the following methods on it to work with the code: * `getText(node)` - returns the source code for the given node. Omit `node` to get the whole source. * `getAllComments()` - returns an array of all comments in the source.