File tree 3 files changed +14
-2
lines changed
3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -23,3 +23,4 @@ Cargo.lock
23
23
# Added by cargo
24
24
25
25
/target
26
+ .editorconfig
Original file line number Diff line number Diff line change @@ -2,4 +2,12 @@ max_width = 120
2
2
use_small_heuristics = " Max"
3
3
use_field_init_shorthand = true
4
4
reorder_imports = true
5
- edition = " 2021"
5
+ edition = " 2021"
6
+ newline_style = " Unix"
7
+ hard_tabs = false
8
+ tab_spaces = 4
9
+ reorder_modules = true
10
+ remove_nested_parens = true
11
+ merge_derives = true
12
+ use_try_shorthand = false
13
+ force_explicit_abi = true
Original file line number Diff line number Diff line change @@ -201,5 +201,8 @@ pub use trie::Trie;
201
201
/// use sensitive_rs::TrieNode;
202
202
///
203
203
/// let mut node = TrieNode::new('a', false);
204
+ ///
205
+ /// assert!(!node.is_root_node());
206
+ /// assert!(!node.is_end())
204
207
/// ```
205
- pub use trie:: TrieNode ;
208
+ pub use trie:: TrieNode ;
You can’t perform that action at this time.
0 commit comments