From 4901cfa9bc8b10b8743103ca752ff58707d9d2c8 Mon Sep 17 00:00:00 2001 From: MSilva95 <53977751+MSilva95@users.noreply.github.com> Date: Tue, 26 Jul 2022 15:05:17 +0100 Subject: [PATCH] highlight --- subjects/buzzinga/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/buzzinga/README.md b/subjects/buzzinga/README.md index c048f732..32a6ff12 100644 --- a/subjects/buzzinga/README.md +++ b/subjects/buzzinga/README.md @@ -7,7 +7,7 @@ Write a function called `BuzZinga()` that takes a number as an argument, then lo - If the number is divisible by 5, print `Zinga` followed by a newline - If the number is divisible by 3 and 5, print `BuzZinga` followed by a newline - If the number is negative or not divisible by 3 or 5, print `*` followed by a newline. -- if the number is 0, print BuzZinga followed by a newline. +- if the number is 0, print `BuzZinga` followed by a newline. ### Expected function