Skip to content

Commit

Permalink
doc: fix typos (#688)
Browse files Browse the repository at this point in the history
  • Loading branch information
kianmeng committed Aug 11, 2022
1 parent 9c42f12 commit 23bd5e2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Expand Up @@ -2,7 +2,7 @@

## Getting to know the project

Before diving into the whys and hows, it's best one got started with the whats. The best place to learn about what pest does and what its limits are is the [book]. Feel free to try any of the examples in the [fiddle editor] as well.
Before diving into the whys and hows, it's best one got started with the what's. The best place to learn about what pest does and what its limits are is the [book]. Feel free to try any of the examples in the [fiddle editor] as well.

[book]: https://pest-parser.github.io/book
[fiddle editor]: https://pest-parser.github.io/#editor
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -40,7 +40,7 @@ Other helpful resources:

## Example

The following is an example of a grammar for a list of alpha-numeric identifiers
The following is an example of a grammar for a list of alphanumeric identifiers
where the first identifier does not start with a digit:

```rust
Expand Down
4 changes: 2 additions & 2 deletions derive/src/lib.rs
Expand Up @@ -152,7 +152,7 @@
//!
//! Strings and characters follow
//! [Rust's escape mechanisms](https://doc.rust-lang.org/reference/tokens.html#byte-escapes), while
//! identifiers can contain alpha-numeric characters and underscores (`_`), as long as they do not
//! identifiers can contain alphanumeric characters and underscores (`_`), as long as they do not
//! start with a digit.
//!
//! 2. Non-terminals
Expand Down Expand Up @@ -266,7 +266,7 @@
//! ```
//!
//! For historical reasons, `PEEK_ALL` matches from top to bottom, while `PEEK[start..end]` matches
//! from bottom to top. There is currectly no syntax to match a slice of the stack top to bottom.
//! from bottom to top. There is currently no syntax to match a slice of the stack top to bottom.
//!
//! ## `Rule`
//!
Expand Down

0 comments on commit 23bd5e2

Please sign in to comment.