Skip to content

Commit d704115

Browse files
committed
Renamed specific_trait to or_expected
1 parent 1e84fdd commit d704115

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

rusty_parser/src/pc_specific/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ mod whitespace;
77
#[cfg(debug_assertions)]
88
pub mod logging;
99

10-
mod specific_trait;
10+
mod or_expected;
1111
mod with_expected_message;
1212
mod with_pos;
1313

1414
pub use self::csv::*;
1515
pub use self::in_parenthesis::*;
1616
pub use self::keyword::*;
1717
pub use self::keyword_map::*;
18-
pub use self::specific_trait::*;
18+
pub use self::or_expected::*;
1919
pub use self::whitespace::*;
2020
pub use self::with_expected_message::*;
2121
pub use self::with_pos::*;
File renamed without changes.

rusty_parser/src/pc_specific/with_pos.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ where
1010
WithPosMapper::new(self)
1111
}
1212
}
13+
1314
impl<I, C, P> WithPos<I, C> for P
1415
where
1516
P: Parser<I, C>,

0 commit comments

Comments
 (0)