summaryrefslogtreecommitdiffstats
path: root/src/doc/book/src/ch06-02-match.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc/book/src/ch06-02-match.md')
-rw-r--r--src/doc/book/src/ch06-02-match.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/book/src/ch06-02-match.md b/src/doc/book/src/ch06-02-match.md
index a24936829..2dfe6c34b 100644
--- a/src/doc/book/src/ch06-02-match.md
+++ b/src/doc/book/src/ch06-02-match.md
@@ -17,7 +17,7 @@ the value falls into the associated code block to be used during execution.
Speaking of coins, let’s use them as an example using `match`! We can write a
function that takes an unknown United States coin and, in a similar way as the
-counting machine, determines which coin it is and return its value in cents, as
+counting machine, determines which coin it is and returns its value in cents, as
shown here in Listing 6-3.
```rust