From a5e3a0f2b442c9d653766e72aadfe2bf0c85f374 Mon Sep 17 00:00:00 2001 From: Sahil Afrid Farookhi Date: Sat, 15 May 2021 11:10:22 +0530 Subject: [PATCH] Update maths/armstrong_number.rb Co-authored-by: Jessica Kwok <60627484+jsca-kwok@users.noreply.github.com> --- maths/armstrong_number.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maths/armstrong_number.rb b/maths/armstrong_number.rb index 36aed4e..b312891 100644 --- a/maths/armstrong_number.rb +++ b/maths/armstrong_number.rb @@ -1,4 +1,4 @@ -# A ruby program to find a given number is armstrong number or not +# A ruby program to determine whether a given number is an Armstrong number # Wiki url: https://en.wikipedia.org/wiki/Narcissistic_number # other resources: https://pages.mtu.edu/~shene/COURSES/cs201/NOTES/chap04/arms.html