# HG changeset patch # User John W. Eaton # Date 1217903567 14400 # Node ID b0e7bbe7cd47a01f516f0c0918905cf204df727f # Parent c0d7eb6623840fed1de9c8015298cebfbe5e9887 oct-env.cc (octave_env::instance_ok): fix type in error message diff --git a/liboctave/ChangeLog b/liboctave/ChangeLog --- a/liboctave/ChangeLog +++ b/liboctave/ChangeLog @@ -1,3 +1,7 @@ +2008-08-04 John W. Eaton + + * oct-env.cc (octave_env::instance_ok): Fix typo in error message. + 2008-07-30 John W. Eaton * oct-inttypes.h: Style fixes. diff --git a/liboctave/oct-env.cc b/liboctave/oct-env.cc --- a/liboctave/oct-env.cc +++ b/liboctave/oct-env.cc @@ -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; }