aboutsummaryrefslogtreecommitdiff
path: root/src/reader.rs
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2023-08-12 11:38:12 +0200
committerMartin Fischer <martin@push-f.com>2023-08-19 06:41:55 +0200
commit7a42549d3121bb9fe29e7e58260a287e62714bc3 (patch)
tree94aa94eb5d8046ba6514085e3753ace9432ddf9f /src/reader.rs
parentceaee3c83f32e573506b2da9f01fbcf56a5198e5 (diff)
docs: remove `crate::` from link labels
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.