diff options
Diffstat (limited to 'src/never.rs')
-rw-r--r-- | src/never.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/never.rs b/src/never.rs index b4bb371..85a1243 100644 --- a/src/never.rs +++ b/src/never.rs @@ -5,9 +5,6 @@ use std::fmt; /// /// This is used as the error type in situations where there can't be an error. A `Result<T, Never>` /// can be safely unwrapped and the `unwrap()` may be optimized away entirely. -/// -/// This error is typically encountered when attempting to get tokens from the `Tokenizer`. Call -/// [`Tokenizer::infallible`] if you wish to avoid unwrapping those results yourself. pub enum Never {} impl fmt::Display for Never { |