Skip to content

Commit d16acb8

Browse files
committed
Minor spacing fix
1 parent c351ee5 commit d16acb8

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

src/main.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ mod iterable;
2121
mod keyword;
2222
mod lambda;
2323
mod maps;
24-
mod meta;
2524
mod namespace;
2625
mod persistent_vector;
2726
mod reader;

src/namespace.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@ impl Namespace {
163163
.replace_with(|refers| refers.add_referred_namespaces(namespaces));
164164
}
165165

166-
//
167166
fn contains_key(&self,sym: &Symbol) -> bool {
168167
self.mappings.borrow_mut().contains_key(sym)
169168
}
@@ -295,6 +294,7 @@ impl Namespaces {
295294
}
296295
}
297296
}
297+
298298
// TODO write this similar to try_get, and rewrite try_get in terms of this
299299
pub fn get_var(&self, namespace_sym: &Symbol, sym: &Symbol) -> Rc<Value> {
300300
// When storing / retrieving from namespaces, we want

src/symbol.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ use crate::persistent_list_map::PersistentListMap;
22
use crate::traits;
33
use std::fmt;
44
use std::hash::{Hash, Hasher};
5-
use crate::meta;
65

76
#[derive(Eq, Clone, Debug)]
87
pub struct Symbol {
@@ -108,7 +107,6 @@ mod tests {
108107
mod symbol_tests {
109108
use crate::keyword::Keyword;
110109
use crate::maps::MapEntry;
111-
use crate::meta;
112110
use crate::persistent_list_map::ToPersistentListMapIter;
113111
use crate::persistent_list_map::{PersistentListMap, PersistentListMapIter};
114112
use crate::symbol::Symbol;

0 commit comments

Comments
 (0)