diff options
author | Martin Fischer <martin@push-f.com> | 2023-08-11 21:25:21 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-08-19 06:41:55 +0200 |
commit | 83144505291319395c1ba40035cf933786bf3422 (patch) | |
tree | f7b9cb85c8000ab3690b1813e4ee0f020dba5873 /src/never.rs | |
parent | 410bff8467a29eae8a7fba26176b8e8d25b734a2 (diff) |
break!: remove InfallibleTokenizer in favor of Iterator::flatten
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 { |