Skip to content

Commit 909ac34

Browse files
committed
Remove semi-colons and full-stops from list-item endings
1 parent b3da0f6 commit 909ac34

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

readme.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -66,25 +66,25 @@ Search for patterns in an NLCST tree.
6666

6767
###### Parameters
6868

69-
* `node` ([`Node`][node]) — Tree to search in;
69+
* `node` ([`Node`][node]) — Tree to search in
7070
* `patterns` (`Array.<string>` or `Object`)
7171
— Patterns to search for. If an `Object`, uses its keys.
7272
Each pattern is a space-delimited list of words, where each
7373
word is [normalize][]d to remove casing, apostrophes, and dashes.
7474
Spaces in a pattern mean zero or more white space nodes in
75-
the tree.
75+
the tree
7676
* `handler` ([`Function`][fn-handler])
77-
— Handler invoked when a match is found.
77+
— Handler invoked when a match is found
7878
* `allowApostrophes` (`boolean`, default: `false`)
79-
— Configuration for [**nlcst-normalize**][normalize]);
79+
— Configuration for [**nlcst-normalize**][normalize])
8080
* `options` (`Object`)
8181
— Configuration:
8282
* `allowApostrophes` (`boolean`, default: `false`)
83-
— Configuration for [**nlcst-normalize**][normalize]);
83+
— Configuration for [**nlcst-normalize**][normalize])
8484
* `allowDashes` (`boolean`, default: `false`)
85-
— Configuration for [**nlcst-normalize**][normalize]);
85+
— Configuration for [**nlcst-normalize**][normalize])
8686
* `allowLiterals` (`boolean`, default: `false`)
87-
— Include [literal][] phrases.
87+
— Include [literal][] phrases
8888

8989
###### Throws
9090

@@ -97,13 +97,13 @@ Handler invoked when a match is found.
9797
###### Parameters
9898

9999
* `nodes` ([`Array.<Node>`][node])
100-
— List of siblings which match `pattern`;
100+
— List of siblings which match `pattern`
101101
* `index` (`number`)
102-
— Position at which the match starts in `parent`;
102+
— Position at which the match starts in `parent`
103103
* `parent` ([`Node`][node])
104-
— Parent node of `nodes`;
104+
— Parent node of `nodes`
105105
* `pattern` (`string`)
106-
— The matched pattern.
106+
— The matched pattern
107107

108108
## License
109109

0 commit comments

Comments
 (0)