Skip to content

Commit 91acfe4

Browse files
committed
Renamed traits modules
1 parent c7afa73 commit 91acfe4

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
mod context;
2+
mod convertible;
23
mod program_rules;
3-
mod traits;
44
mod types;
55

66
pub use self::context::*;
7-
pub use self::traits::*;
7+
pub use self::convertible::*;
88
pub use self::types::*;

rusty_linter/src/core/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
mod can_cast_to;
12
mod casting;
23
mod const_value_resolver;
34
mod error;
@@ -8,11 +9,11 @@ mod ref_to_value_visitor;
89
mod resolved_param_type;
910
mod signature;
1011
mod string_length;
11-
mod traits;
1212
mod type_resolver;
1313
mod type_resolver_impl;
1414
mod visitor;
1515

16+
pub use self::can_cast_to::*;
1617
pub use self::casting::*;
1718
pub use self::const_value_resolver::*;
1819
pub use self::error::*;
@@ -23,7 +24,6 @@ pub use self::ref_to_value_visitor::*;
2324
pub use self::resolved_param_type::*;
2425
pub use self::signature::*;
2526
pub use self::string_length::*;
26-
pub use self::traits::*;
2727
pub use self::type_resolver::*;
2828
pub use self::type_resolver_impl::*;
2929
pub use self::visitor::*;

0 commit comments

Comments
 (0)