diff options
Diffstat (limited to 'vendor/pest_derive/src/lib.rs')
-rw-r--r-- | vendor/pest_derive/src/lib.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/vendor/pest_derive/src/lib.rs b/vendor/pest_derive/src/lib.rs index f60d5d943..d980c6ae9 100644 --- a/vendor/pest_derive/src/lib.rs +++ b/vendor/pest_derive/src/lib.rs @@ -55,7 +55,7 @@ //! //! Comments start with `//` and end at the end of the line. //! -//! ```ignore +//! ```text //! // a comment //! ``` //! @@ -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 @@ -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` //! @@ -290,7 +290,6 @@ //! * `NEWLINE` - matches either "\n" or "\r\n" or "\r" #![doc(html_root_url = "https://docs.rs/pest_derive")] - extern crate pest_generator; extern crate proc_macro; |