Skip to content

Commit 5016894

Browse files
committed
Docs: Small fixes
1 parent 7910ade commit 5016894

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Lark is fast and light (lower is better)
125125

126126
Check out the [JSON tutorial](/docs/json_tutorial.md#conclusion) for more details on how the comparison was made.
127127

128-
For a more thorough and objective comparison, checkout the [Python Parsing Benchmarks](https://github.com/goodmami/python-parsing-benchmarks) repo.
128+
For thorough 3rd-party benchmarks, checkout the [Python Parsing Benchmarks](https://github.com/goodmami/python-parsing-benchmarks) repo.
129129

130130
#### Feature comparison
131131

@@ -180,8 +180,8 @@ Lark accepts pull-requests. See [How to develop Lark](/docs/how_to_develop.md)
180180

181181
Big thanks to everyone who contributed so far:
182182

183-
<a href="https://github.com/lark-parser/lark/graphs/contributors">
184183
<img src="https://contributors-img.web.app/image?repo=lark-parser/lark" />
184+
<a href="https://github.com/lark-parser/lark/graphs/contributors">
185185
</a>
186186

187187
## Sponsor

docs/parsers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Lark provides the following options to combat ambiguity:
2323

2424
2) Users may choose to receive the set of all possible parse-trees (using ambiguity='explicit'), and choose the best derivation themselves. While simple and flexible, it comes at the cost of space and performance, and so it isn't recommended for highly ambiguous grammars, or very long inputs.
2525

26-
3) As an advanced feature, users may use specialized visitors to iterate the SPPF themselves.
26+
3) As an advanced feature, users may use specialized visitors to iterate the SPPF themselves. There is also [a 3rd party utility for iterating over the SPPF](https://github.com/chanicpanic/lark-ambig-tools).
2727

2828
**lexer="dynamic_complete"**
2929

0 commit comments

Comments
 (0)