changeset 29984:c633d34960b4

factor.m: Fix typo in error() message. * factor.m: Add missing parenthesis ')' to error() message.
author Rik <rik@octave.org>
date Tue, 17 Aug 2021 16:35:23 -0700
parents ecbcc4647dbe
children 3eb6483241d0
files scripts/specfun/factor.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/specfun/factor.m	Tue Aug 17 16:28:36 2021 -0700
+++ b/scripts/specfun/factor.m	Tue Aug 17 16:35:23 2021 -0700
@@ -60,7 +60,7 @@
 
   cls = class (q);  # store class
   if (isfloat (q) && q > flintmax (q))
-    error ("factor: Q too large to factor (> flintmax");
+    error ("factor: Q too large to factor (> flintmax)");
   endif
 
   ## There is at most one prime greater than sqrt(q), and if it exists,