File tree Expand file tree Collapse file tree 3 files changed +32
-1
lines changed
notify-debouncer-full/src Expand file tree Collapse file tree 3 files changed +32
-1
lines changed Original file line number Diff line number Diff line change @@ -125,6 +125,15 @@ jobs:
125
125
- name : check build without crossbeam/default features
126
126
run : cargo build -p notify --no-default-features --target ${{ matrix.target }}
127
127
128
+ # If this fails, consider changing your text or adding something to .typos.toml
129
+ typos :
130
+ runs-on : ubuntu-latest
131
+ steps :
132
+ - uses : actions/checkout@v4
133
+
134
+ - name : check typos
135
+
136
+
128
137
audit :
129
138
runs-on : ubuntu-latest
130
139
Original file line number Diff line number Diff line change
1
+ # See the configuration reference at
2
+ # https://github.com/crate-ci/typos/blob/master/docs/reference.md
3
+
4
+ # Corrections take the form of a key/value pair. The key is the incorrect word
5
+ # and the value is the correct word. If the key and value are the same, the
6
+ # word is treated as always correct. If the value is an empty string, the word
7
+ # is treated as always incorrect.
8
+
9
+ # Match Identifier - Case Sensitive
10
+ [default .extend-identifiers ]
11
+ ecd686ba = " ecd686ba" # In the CHANGELOG.md
12
+ waitres = " waitres"
13
+
14
+ # Match Inside a Word - Case Insensitive
15
+ [default .extend-words ]
16
+
17
+ [files ]
18
+ # Include .github, .cargo, etc.
19
+ ignore-hidden = false
20
+ # /.git isn't in .gitignore, because git never tracks it.
21
+ # Typos doesn't know that, though.
22
+ extend-exclude = [" /.git" ]
Original file line number Diff line number Diff line change @@ -731,7 +731,7 @@ fn sort_events(events: Vec<DebouncedEvent>) -> Vec<DebouncedEvent> {
731
731
let mut push_next = false ;
732
732
733
733
while events. front ( ) . is_some_and ( |event| event. time <= min_time) {
734
- // unwrap is safe beause `pop_front` mus return some in order to enter the loop
734
+ // unwrap is safe because `pop_front` mus return some in order to enter the loop
735
735
let event = events. pop_front ( ) . unwrap ( ) ;
736
736
sorted. push ( event) ;
737
737
push_next = true ;
You can’t perform that action at this time.
0 commit comments