From fc25ad654ab1551f80d744c135762254d7a9009e Mon Sep 17 00:00:00 2001 From: luca paterlini Date: Tue, 20 Jan 2026 18:17:57 +0100 Subject: [PATCH] Update option_unwrap.md add lemonade call for the second example as well to show all the cases --- src/error/option_unwrap.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/error/option_unwrap.md b/src/error/option_unwrap.md index 26df9b8841..83c44bf95a 100644 --- a/src/error/option_unwrap.md +++ b/src/error/option_unwrap.md @@ -58,6 +58,7 @@ fn main() { let nothing = None; drink(coffee); + drink(lemonade); drink(nothing); } ```