From fc65455b8a54ef4224af5351718e0c7eb2d79e3a Mon Sep 17 00:00:00 2001 From: Jacobtread <33708767+jacobtread@users.noreply.github.com> Date: Fri, 30 Sep 2022 21:58:43 +1300 Subject: [PATCH] Corrected mistaken "The" instead of "There" (#1617) --- src/error/option_unwrap/defaults.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/error/option_unwrap/defaults.md b/src/error/option_unwrap/defaults.md index e75493e7e7..117333f120 100644 --- a/src/error/option_unwrap/defaults.md +++ b/src/error/option_unwrap/defaults.md @@ -1,6 +1,6 @@ # Unpacking options and defaults -The is more than one way to unpack an `Option` and fall back on a default if it is `None`. To choose the one that meets our needs, we need to consider the following: +There is more than one way to unpack an `Option` and fall back on a default if it is `None`. To choose the one that meets our needs, we need to consider the following: * do we need eager or lazy evaluation? * do we need to keep the original empty value intact, or modify it in place?