From cb5843c59062656e98a6ed5755d2e7c3b9b17d24 Mon Sep 17 00:00:00 2001 From: Chris Date: Mon, 14 Jun 2021 14:33:32 +0100 Subject: [PATCH] Grammatical improvement in IsPowerof2 --- subjects/ispowerof2/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/ispowerof2/README.md b/subjects/ispowerof2/README.md index 39c06c6f6..cb85f0d7a 100644 --- a/subjects/ispowerof2/README.md +++ b/subjects/ispowerof2/README.md @@ -4,11 +4,11 @@ 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 prints `false`. +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. -- When there is only one argument, it will always be a positive valid int. +- When there is only one argument, it will always be a positive valid `int`. ### Usage :