Skip to content

Commit f6106e9

Browse files
committed
Remove unnecessary adjective
1 parent 06c7432 commit f6106e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ch19-02-refutability.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ pattern `Some(x)`, Rust rightfully produces a compiler error.
5151
If we have a refutable pattern where an irrefutable pattern is needed, we can
5252
fix it by changing the code that uses the pattern: Instead of using `let`, we
5353
can use `let else`. Then, if the pattern doesn’t match, the code in the curly
54-
brackets will handle the nonmatching value. Listing 19-9 shows how to fix the
55-
code in Listing 19-8.
54+
brackets will handle the value. Listing 19-9 shows how to fix the code in
55+
Listing 19-8.
5656

5757
<Listing number="19-9" caption="Using `let...else` and a block with refutable patterns instead of `let`">
5858

0 commit comments

Comments
 (0)