Skip to content

Commit

Permalink
Fixed import
Browse files Browse the repository at this point in the history
  • Loading branch information
zslayton committed Nov 14, 2023
1 parent 6921e99 commit 42c60af
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/symbol_ref.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::raw_symbol_token_ref::AsRawSymbolTokenRef;
use crate::{RawSymbolTokenRef, Symbol};
use crate::raw_symbol_token_ref::{AsRawSymbolTokenRef, RawSymbolTokenRef};
use crate::Symbol;
use std::borrow::{Borrow, Cow};
use std::fmt::{Debug, Formatter};
use std::hash::{Hash, Hasher};
Expand All @@ -16,7 +16,6 @@ impl<'a> Debug for SymbolRef<'a> {
write!(f, "{}", self.text().unwrap_or("$0"))
}
}
//bar

impl<'a> SymbolRef<'a> {
/// If this symbol has known text, returns `Some(&str)`. Otherwise, returns `None`.
Expand Down

0 comments on commit 42c60af

Please sign in to comment.