diff options
author | Martin Fischer <martin@push-f.com> | 2023-08-12 12:58:08 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-08-19 13:53:58 +0200 |
commit | 0d9cd9ed44b676ccd4991cea27dc620b94ebe7e7 (patch) | |
tree | aba2bff89958bbe4516a49caba5edffc866c64af /src/reader.rs | |
parent | b125bec9914bd211d77719bd60bc5a23bd9db579 (diff) |
feat: introduce NaiveParser
Diffstat (limited to 'src/reader.rs')
-rw-r--r-- | src/reader.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/reader.rs b/src/reader.rs index e0161e5..b6e0905 100644 --- a/src/reader.rs +++ b/src/reader.rs @@ -33,7 +33,7 @@ pub trait Reader { /// An object that can be converted into a [`Reader`]. /// /// For example, any utf8-string can be converted into a `StringReader`. -// TODO: , such that [give concrete examples of not-yet-implemented parser API] work. +// TODO: , such that [give concrete examples of NaiveParser::new] work. pub trait IntoReader<'a> { /// The reader type into which this type should be converted. type Reader: Reader + 'a; |