From 98bd9edb4a8282848cbfca05a5ddfa6ee00b5948 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 22 Jun 2024 21:46:50 +0200 Subject: [PATCH] concept switch: fix typo (#888) --- concepts/switch/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concepts/switch/introduction.md b/concepts/switch/introduction.md index 0ba56114..2963c831 100644 --- a/concepts/switch/introduction.md +++ b/concepts/switch/introduction.md @@ -58,5 +58,5 @@ case 3: default: book_house(group_size); } -// book_apartment happens wheng group_size is 2 or 3 +// book_apartment happens when group_size is 2 or 3 ```