From a273b02e59ebfa62c415efe2dd5951e3e3f9a8a7 Mon Sep 17 00:00:00 2001 From: Garry Filakhtov Date: Mon, 2 Mar 2020 15:56:17 +1100 Subject: [PATCH] Add the missing word to the sentence --- src/ch06-02-match.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch06-02-match.md b/src/ch06-02-match.md index f40380867f..7b6004bf01 100644 --- a/src/ch06-02-match.md +++ b/src/ch06-02-match.md @@ -181,7 +181,7 @@ pattern we forgot! Matches in Rust are *exhaustive*: we must exhaust every last possibility in order for the code to be valid. Especially in the case of `Option`, when Rust prevents us from forgetting to explicitly handle the `None` case, it protects us from assuming that we have a value when we might -have null, thus making the billion-dollar mistake discussed earlier. +have null, thus making the billion-dollar mistake discussed earlier impossible. ### The `_` Placeholder