From 090b5357f6d1846615bb072bf8f46606901b13e6 Mon Sep 17 00:00:00 2001 From: Aardbei Date: Wed, 28 Sep 2022 20:09:08 -0500 Subject: [PATCH] Update defaults.md Just a small typo! --- 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?