changeset 16929:a75a521e5993

__unimplemented__.m: Correct typo in previous changeset 6e240f8fcb88. * scripts/help/__unimplemented__.m: Correct using double quotes within double-quoted string.
author Rik <rik@octave.org>
date Tue, 09 Jul 2013 12:00:37 -0700
parents 7c4a6197e020
children c2a57f9c6a2e
files scripts/help/__unimplemented__.m
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/help/__unimplemented__.m	Tue Jul 09 11:45:48 2013 -0700
+++ b/scripts/help/__unimplemented__.m	Tue Jul 09 12:00:37 2013 -0700
@@ -73,7 +73,8 @@
     "Try @code{help glpk} for more info."];
 
   case "matlabrc"
-    txt = ["matlabrc is not implemented.  Octave uses the file ".octaverc" instead."];
+    txt = ["matlabrc is not implemented.  ",...
+           'Octave uses the file ".octaverc" instead.'];
 
   case {"ode113", "ode15i", "ode15s", "ode23", "ode23s", "ode23t", "ode23tb", "ode45", "odeget", "odeset"}
     txt = ["Octave provides lsode for solving differential equations.  ",...
@@ -82,7 +83,8 @@
     "See @url{http://octave.sourceforge.net/odepkg/}."];
 
   case "startup"
-    txt = ["startup is not implemented.  Octave uses the file ".octaverc" instead."];
+    txt = ["startup is not implemented.  ",...
+           'Octave uses the file ".octaverc" instead.'];
 
   case "quad2d"
     txt = ["quad2d is not implemented.  Consider using dblquad."];