From fdfa726de947eb3b1dc2ede9057c4644e43722b5 Mon Sep 17 00:00:00 2001 From: Christopher Fremond <34804391+Frenchris@users.noreply.github.com> Date: Thu, 22 Jul 2021 17:03:19 +0100 Subject: [PATCH] Update README.md --- subjects/ispowerof2/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/ispowerof2/README.md b/subjects/ispowerof2/README.md index cb85f0d7..919cfee0 100644 --- a/subjects/ispowerof2/README.md +++ b/subjects/ispowerof2/README.md @@ -6,7 +6,7 @@ Write a program that determines if a given number is a power of 2. This program must print `true` if the given number is a power of 2, otherwise it has to print `false`. -- If there is more than one or no argument the program should print nothing. +- If there is more than one or no argument, the program should print nothing. - When there is only one argument, it will always be a positive valid `int`.