From 005b78227a0fbe1e82af1e3cf7bf8ccc833c3329 Mon Sep 17 00:00:00 2001 From: Landon Curt Noll Date: Sun, 7 Nov 2021 18:36:06 -0800 Subject: [PATCH] Minor comment changes to palindrome.cal --- cal/palindrome.cal | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cal/palindrome.cal b/cal/palindrome.cal index 68d8ba0..f0e3a66 100644 --- a/cal/palindrome.cal +++ b/cal/palindrome.cal @@ -18,7 +18,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * Under source code control: 2021/11/06 14:35:37 - * File existed as early as: before 2021 + * File existed as early as: 2021 * * Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/ */ @@ -589,7 +589,7 @@ define prevprimepal(val) */ if (val < 10) { /* - * Prevcand will return 0 if there is no previous prime + * The prevcand() call will return 0 if there is no previous prime * such as the case when val < 2. */ return prevcand(pal);