File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ refresh_time = 1000
182182# Display directories before files
183183dirs_first = false
184184show_hidden_by_default = false
185- # Whether to show special commads in a fuzzy style. Alternative is a list-like
185+ # Whether to show special commands in a fuzzy style. Alternative is a list-like
186186# view
187187special_commands_fuzzy = true
188188
Original file line number Diff line number Diff line change 6060}
6161
6262/// Merge two structs against their default. As long as the right-hand merge is not the default,
63- /// it replaces the left-hande merge.
63+ /// it replaces the left-hand merge.
6464macro_rules! merge {
6565 ( $first: expr, $second: expr; $( $field: ident) ,+) => { {
6666 let base = Self :: default ( ) ;
@@ -816,9 +816,9 @@ impl<'de> Deserialize<'de> for Modifier {
816816 where
817817 D : serde:: Deserializer < ' de > ,
818818 {
819- struct ModifierVistor ;
819+ struct ModifierVisitor ;
820820
821- impl < ' de > Visitor < ' de > for ModifierVistor {
821+ impl < ' de > Visitor < ' de > for ModifierVisitor {
822822 type Value = Modifier ;
823823
824824 fn expecting ( & self , formatter : & mut fmt:: Formatter ) -> fmt:: Result {
@@ -841,7 +841,7 @@ impl<'de> Deserialize<'de> for Modifier {
841841 }
842842 }
843843
844- deserializer. deserialize_seq ( ModifierVistor )
844+ deserializer. deserialize_seq ( ModifierVisitor )
845845 }
846846}
847847
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ fn main() -> Result<()> {
112112 shut_down( ) ;
113113 }
114114
115- let config = Rc :: new ( get_config ( ) . context ( "error gettting project root" ) ?) ;
115+ let config = Rc :: new ( get_config ( ) . context ( "error getting project root" ) ?) ;
116116
117117 log:: set_logger ( & EVENT_LOGGER )
118118 . map ( |( ) | {
You can’t perform that action at this time.
0 commit comments