From 12b627da401c68a5081822a49068421f1bb2465c Mon Sep 17 00:00:00 2001 From: Nitin Kumar Date: Sat, 30 Oct 2021 03:32:36 -0700 Subject: [PATCH] docs: fix typo in `working-with-rules.md` (#15233) --- 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.