aboutsummaryrefslogtreecommitdiff
path: root/src/spans.rs
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2023-08-12 11:50:46 +0200
committerMartin Fischer <martin@push-f.com>2023-08-19 06:41:55 +0200
commit69fdbee250ebfce135bff2671226097bc536d953 (patch)
tree994ef511feb77d7a095dc43ec62bca681242228e /src/spans.rs
parent7a42549d3121bb9fe29e7e58260a287e62714bc3 (diff)
break!: stop re-exporting reader traits & types
This is primarily done to make the rustdoc more readable (by grouping Reader, IntoReader, StringReader and BufReadReader in the reader module). Ideally IntoReader is already implemented for your input type and you don't have to concern yourself with these traits / types at all.
Diffstat (limited to 'src/spans.rs')
-rw-r--r--src/spans.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/spans.rs b/src/spans.rs
index c3d269d..0a29eb2 100644
--- a/src/spans.rs
+++ b/src/spans.rs
@@ -12,7 +12,7 @@
use std::ops::Range;
-use crate::{IntoReader, Reader};
+use crate::reader::{IntoReader, Reader};
/// A trait to be implemented by readers that track their own position.
pub trait GetPos {