aboutsummaryrefslogtreecommitdiff
path: root/src/reader.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/reader.rs')
-rw-r--r--src/reader.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/reader.rs b/src/reader.rs
index 19929d4..fa83139 100644
--- a/src/reader.rs
+++ b/src/reader.rs
@@ -28,7 +28,7 @@ pub trait Reader {
fn try_read_string(&mut self, s: &str, case_sensitive: bool) -> Result<bool, Self::Error>;
}
-/// An object that can be converted into a [`crate::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.