From 1d4a67c6ea07b12c5d0b6683dcf402ebce9c914d Mon Sep 17 00:00:00 2001 From: Mann Mehta Date: Sat, 4 Apr 2020 17:29:11 +0530 Subject: [PATCH] Update math/binary_exponent.cpp Co-Authored-By: John Law --- math/binary_exponent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math/binary_exponent.cpp b/math/binary_exponent.cpp index c9ed944d8..8fb9ec1a8 100644 --- a/math/binary_exponent.cpp +++ b/math/binary_exponent.cpp @@ -23,7 +23,7 @@ int binExpo(int a, int b) { int main() { int a, b; - /// Give two nos as a^b (where '^' denotes power exponent operation) + /// Give two numbers a, b std::cin >> a >> b; /// Result of a^b std::cout << binExpo(a, b) << std::endl;