changeset 27967:6628a284d56d stable

fix more spelling errors (bug #57613) * configure.ac, spellcheck, HACKING.md, documentation.h, ov-classdef.h, shrinkfaces.m, __gnuplot_draw_axes__.m: Fix spelling errors found by codespell.
author Mike Miller <mtmiller@octave.org>
date Mon, 20 Jan 2020 14:16:49 -0800
parents 904c9e3244bc
children 9e769371fb45 44a019d01aa5
files configure.ac doc/interpreter/doccheck/spellcheck etc/HACKING.md libgui/src/documentation.h libinterp/octave-value/ov-classdef.h scripts/plot/draw/shrinkfaces.m scripts/plot/util/private/__gnuplot_draw_axes__.m
diffstat 7 files changed, 8 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/configure.ac	Mon Jan 20 13:30:08 2020 -0800
+++ b/configure.ac	Mon Jan 20 14:16:49 2020 -0800
@@ -1656,7 +1656,7 @@
   PKG_CHECK_EXISTS([$magick++], [
     dnl Make sure we only get -I, -L, and -l flags.
     dnl Some Graphics/ImageMagick++ dnl packages add extra flags that are
-    dnl useful when building Graphics/ImageMagick++ extentions.  These extra
+    dnl useful when building Graphics/ImageMagick++ extensions.  These extra
     dnl flags break the Octave build.
     MAGICK_CPPFLAGS="$($PKG_CONFIG --cflags-only-I $magick++ | $SED -e 's/^ *$//')"
     MAGICK_LDFLAGS="$($PKG_CONFIG --libs-only-L $magick++ | $SED -e 's/^ *$//')"
--- a/doc/interpreter/doccheck/spellcheck	Mon Jan 20 13:30:08 2020 -0800
+++ b/doc/interpreter/doccheck/spellcheck	Mon Jan 20 14:16:49 2020 -0800
@@ -50,7 +50,7 @@
 if ($?)
 {
   unlink ($tmp_fname);
-  die ("aspell command unsuccesful.  Cannot continue\n");
+  die ("aspell command unsuccessful.  Cannot continue\n");
 }
 
 open (FH, "<$tmp_fname")
--- a/etc/HACKING.md	Mon Jan 20 13:30:08 2020 -0800
+++ b/etc/HACKING.md	Mon Jan 20 14:16:49 2020 -0800
@@ -217,7 +217,7 @@
        Classes that define the parse tree for the interpreter.
   - `corefcn`
        statically linked `DEFUN` functions (callable from the
-       scripting langauge) as well as internal C++ functions used by
+       scripting language) as well as internal C++ functions used by
        the interpreter.
   - `dldfcn`
        dynamically linked `DEFUN` functions (callable from the
--- a/libgui/src/documentation.h	Mon Jan 20 13:30:08 2020 -0800
+++ b/libgui/src/documentation.h	Mon Jan 20 14:16:49 2020 -0800
@@ -84,7 +84,7 @@
   };
 
 
-  //! The documentaiton main class derived from QSplitter
+  //! The documentation main class derived from QSplitter
 
   class documentation : public QSplitter
   {
--- a/libinterp/octave-value/ov-classdef.h	Mon Jan 20 13:30:08 2020 -0800
+++ b/libinterp/octave-value/ov-classdef.h	Mon Jan 20 14:16:49 2020 -0800
@@ -48,7 +48,7 @@
   class type_info;
 }
 
-// This is mainly a boostrap class to declare the expected interface.
+// This is mainly a bootstrap class to declare the expected interface.
 // The actual base class is cdef_class_base, which is declared after
 // cdef_object, such that it can contain cdef_object objects.
 class
@@ -893,7 +893,7 @@
   //! Classdef attribute values can be given in the form of
   //! expressions.  These expressions must be evaluated before
   //! assigning them as attribute values.  Evaluating them as they are
-  //! parsed causes trouble with possible recusion in the parser so we
+  //! parsed causes trouble with possible recursion in the parser so we
   //! do it here.  For example
   //!
   //! @code
--- a/scripts/plot/draw/shrinkfaces.m	Mon Jan 20 13:30:08 2020 -0800
+++ b/scripts/plot/draw/shrinkfaces.m	Mon Jan 20 14:16:49 2020 -0800
@@ -196,7 +196,7 @@
 %! axis auto;   # Kludge required for Octave
 %! axis equal;
 %! grid on;
-%! title ("shrinkfaces() on 2-D complex shapes tesselated with triangles");
+%! title ("shrinkfaces() on 2-D complex shapes tessellated with triangles");
 
 %!demo
 %! clf;
--- a/scripts/plot/util/private/__gnuplot_draw_axes__.m	Mon Jan 20 13:30:08 2020 -0800
+++ b/scripts/plot/util/private/__gnuplot_draw_axes__.m	Mon Jan 20 14:16:49 2020 -0800
@@ -1855,7 +1855,7 @@
       if (length (color) == 3)
         colorspec = sprintf ('rgb "#%02x%02x%02x"', round (255*color));
       else
-        colorspec = sprintf ("palatte %d", round (color));
+        colorspec = sprintf ("palette %d", round (color));
       endif
     else
       colorspec = sprintf ('"%s"', color);