From 22a69c87f47eb4552e680d3c82cf4561e3690d3b Mon Sep 17 00:00:00 2001 From: maekki Date: Fri, 30 May 2025 10:24:16 +0200 Subject: [PATCH] Fix example for just_the_buzz --- concepts/conditionals/about.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/concepts/conditionals/about.md b/concepts/conditionals/about.md index d0b91f26ce6..2060905b335 100644 --- a/concepts/conditionals/about.md +++ b/concepts/conditionals/about.md @@ -141,8 +141,8 @@ def just_the_buzz(number): >>> just_the_buzz(15) 'Buzz!' ->>> just_the_buzz(10) -'10' +>>> just_the_buzz(7) +'7' ``` ## Truthy and Falsy