Skip to content

Commit 4d931bd

Browse files
committed
prep for 2018 edition
1 parent 2689e39 commit 4d931bd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ use std::rc::Rc;
1818
mod join;
1919
mod map;
2020
mod treefrog;
21-
pub use treefrog::{
21+
pub use crate::treefrog::{
2222
extend_anti::ExtendAnti,
2323
extend_with::ExtendWith,
2424
filter_anti::FilterAnti,

src/treefrog.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ impl<Key: Ord, Val: Ord> RelationLeaper<Key, Val> for Relation<(Key, Val)> {
224224

225225
pub(crate) mod extend_with {
226226
use super::{binary_search, Leaper, Relation};
227-
use join::gallop;
227+
use crate::join::gallop;
228228

229229
/// Wraps a Relation<Tuple> as a leaper.
230230
pub struct ExtendWith<'a, Key, Val, Tuple, Func>
@@ -291,7 +291,7 @@ pub(crate) mod extend_with {
291291

292292
pub(crate) mod extend_anti {
293293
use super::{binary_search, Leaper, Relation};
294-
use join::gallop;
294+
use crate::join::gallop;
295295

296296
/// Wraps a Relation<Tuple> as a leaper.
297297
pub struct ExtendAnti<'a, Key, Val, Tuple, Func>

0 commit comments

Comments
 (0)