changeset 31168:5386fd4af64c stable

uitable.m: Fix example code in DOCSTRING (bug #62824). * uitable.m: Fix example code in DOCSTRING which required removing space between function call and '('.
author Rik <rik@octave.org>
date Fri, 29 Jul 2022 20:53:14 -0700
parents d0b4209749e9
children e37e46ef0505 bcd75c07c9e8
files scripts/gui/uitable.m
diffstat 1 files changed, 9 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/gui/uitable.m	Fri Jul 29 12:01:19 2022 -0400
+++ b/scripts/gui/uitable.m	Fri Jul 29 20:53:14 2022 -0700
@@ -76,15 +76,15 @@
 ##         "double" , 12.3456789;
 ##         "complex", 1+2i;
 ##         "bool"   , true;
-##         "single" , single (12.3456789);
-##         "int8"   , int8 (-128);
-##         "uint8"  , uint8 (128);
-##         "int16"  , int16 (-32768);
-##         "uint16" , uint16 (32768);
-##         "int32"  , int32 (-2147483648);
-##         "uint32" , uint32 (2147483648);
-##         "int64"  , int64 (-2147483649);
-##         "uint64" , uint64 (2147843649)@};
+##         "single" , single(12.3456789);
+##         "int8"   , int8(-128);
+##         "uint8"  , uint8(128);
+##         "int16"  , int16(-32768);
+##         "uint16" , uint16(32768);
+##         "int32"  , int32(-2147483648);
+##         "uint32" , uint32(2147483648);
+##         "int64"  , int64(-2147483649);
+##         "uint64" , uint64(2147843649)@};
 ##
 ##   popup_options = @{"A", "B", "C", "D", "E"@};
 ##