changeset 11800:a0d567862eb8 release-3-0-x

oct-env.cc (octave_env::instance_ok): fix type in error message
author John W. Eaton <jwe@octave.org>
date Mon, 04 Aug 2008 22:32:47 -0400
parents 66c8e8252d85
children 8d0f0e691644
files liboctave/ChangeLog liboctave/oct-env.cc
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/ChangeLog	Mon Aug 04 22:15:34 2008 -0400
+++ b/liboctave/ChangeLog	Mon Aug 04 22:32:47 2008 -0400
@@ -1,3 +1,7 @@
+2008-08-04  John W. Eaton  <jwe@octave.org>
+
+	* oct-env.cc (octave_env::instance_ok): Fix typo in error message.
+
 2008-06-20  Jaroslav Hajek <highegg@gmail.com>
 
 	* MatrixType.h: Add missing include statement.
--- a/liboctave/oct-env.cc	Mon Aug 04 22:15:34 2008 -0400
+++ b/liboctave/oct-env.cc	Mon Aug 04 22:32:47 2008 -0400
@@ -89,7 +89,7 @@
   if (! instance)
     {
       (*current_liboctave_error_handler)
-	("unable to create current working directoy object!");
+	("unable to create current working directory object!");
 
       retval = false;
     }