Skip to content

Commit 34792f8

Browse files
austriancoderChristian Gmeiner
and
Christian Gmeiner
authored
fix: Remove unnecessary qualification (#1024)
Signed-off-by: Christian Gmeiner <[email protected]> Co-authored-by: Christian Gmeiner <[email protected]>
1 parent b858b4a commit 34792f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pest/src/iterators/pair.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ use super::line_index::LineIndex;
2525
use super::pairs::{self, Pairs};
2626
use super::queueable_token::QueueableToken;
2727
use super::tokens::{self, Tokens};
28-
use crate::span::{self, Span};
28+
use crate::span::Span;
2929
use crate::RuleType;
3030

3131
/// A matching pair of [`Token`]s and everything between them.
@@ -204,7 +204,7 @@ impl<'i, R: RuleType> Pair<'i, R> {
204204
let start = self.pos(self.start);
205205
let end = self.pos(self.pair());
206206

207-
span::Span::new_internal(self.input, start, end)
207+
Span::new_internal(self.input, start, end)
208208
}
209209

210210
/// Get current node tag

0 commit comments

Comments
 (0)