File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Expand file tree Collapse file tree 2 files changed +33
-1
lines changed 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
+ ba = " ba"
12
+ curr_iy = " curr_iy"
13
+ flate2 = " flate2"
14
+ iy = " iy"
15
+ iy0 = " iy0"
16
+ iy1 = " iy1"
17
+ numer = " numer"
18
+ numer_a = " numer_a"
19
+ numer_b = " numer_b"
20
+ PNGs = " PNGs"
21
+
22
+ # Match Inside a Word - Case Insensitive
23
+ [default .extend-words ]
24
+
25
+ [files ]
26
+ # Include .github, .cargo, etc.
27
+ ignore-hidden = false
28
+ extend-exclude = [
29
+ # /.git isn't in .gitignore, because git never tracks it.
30
+ # Typos doesn't know that, though.
31
+ " /.git" ,
32
+ ]
Original file line number Diff line number Diff line change @@ -1220,7 +1220,7 @@ impl PathStroker {
1220
1220
if valid_divide {
1221
1221
if intersect_ray_type == IntersectRayType :: CtrlPt {
1222
1222
// the intersection of the tangents need not be on the tangent segment
1223
- // so 0 <= numerA <= 1 is not necessarily true
1223
+ // so 0 <= numer_a <= 1 is not necessarily true
1224
1224
quad_points. quad [ 1 ] . x =
1225
1225
start. x * ( 1.0 - numer_a) + quad_points. tangent_start . x * numer_a;
1226
1226
quad_points. quad [ 1 ] . y =
You can’t perform that action at this time.
0 commit comments