changeset 20133:21dbaf135667

doc: Periodic spellcheck of documentation. * aspell-octave.en.pws: Add new words to Octave-only dictionary. * gui.txi, cubehelix.m, rgb2ind.m, qmr.m, strsplit.m: Fix spellings or add @nospell{} directive.
author Rik <rik@octave.org>
date Sun, 19 Apr 2015 10:18:08 -0700
parents 1f9ed81bd173
children d58ba8b9f709
files doc/interpreter/doccheck/aspell-octave.en.pws doc/interpreter/gui.txi scripts/image/cubehelix.m scripts/image/rgb2ind.m scripts/sparse/qmr.m scripts/strings/strsplit.m
diffstat 6 files changed, 15 insertions(+), 13 deletions(-) [+]
line wrap: on
line diff
--- a/doc/interpreter/doccheck/aspell-octave.en.pws	Sun Apr 19 06:53:30 2015 -0300
+++ b/doc/interpreter/doccheck/aspell-octave.en.pws	Sun Apr 19 10:18:08 2015 -0700
@@ -648,6 +648,7 @@
 NaN
 NaNs
 nargin
+nargout
 nbincdf
 nbininv
 nbinpdf
@@ -1046,6 +1047,7 @@
 UB
 uchar
 UHESS
+UI
 UID
 uimenu
 uint
--- a/doc/interpreter/gui.txi	Sun Apr 19 06:53:30 2015 -0300
+++ b/doc/interpreter/gui.txi	Sun Apr 19 10:18:08 2015 -0700
@@ -67,9 +67,9 @@
 @node UI Elements
 @section UI Elements
 
-The ui* series of functions work best with the @code{qt} graphics toolkit,
-although some functionality is available with the @code{fltk} toolkit.  There
-is no support for the @code{gnuplot} toolkit.
+The @nospell{ui*} series of functions work best with the @code{qt} graphics
+toolkit, although some functionality is available with the @code{fltk} toolkit.
+There is no support for the @code{gnuplot} toolkit.
 
 @DOCSTRING(uicontextmenu)
 
--- a/scripts/image/cubehelix.m	Sun Apr 19 06:53:30 2015 -0300
+++ b/scripts/image/cubehelix.m	Sun Apr 19 10:18:08 2015 -0700
@@ -35,7 +35,7 @@
 ## colormap.  Defaults to the length of the current colormap.
 ##
 ## Development of this colormap is described in @cite{Green, D. A., 2011,
-## "A colour scheme for the display of astronomical intensity images",
+## "A @nospell{colour} scheme for the display of astronomical intensity images",
 ## Bulletin of the Astronomical Society of India, 39, 289.}.
 ##
 ## @seealso{colormap}
--- a/scripts/image/rgb2ind.m	Sun Apr 19 06:53:30 2015 -0300
+++ b/scripts/image/rgb2ind.m	Sun Apr 19 10:18:08 2015 -0700
@@ -34,7 +34,7 @@
 ## of rows in @var{map}) in order
 ##
 ## Multi-dimensional indexed images (of size @nospell{MxNx3xK}) are also
-## supported, both via a single input (@var{rgb}) or its three colour channels
+## supported, both via a single input (@var{rgb}) or its three color channels
 ## as separate variables.
 ##
 ## @seealso{ind2rgb, rgb2hsv, rgb2ntsc}
--- a/scripts/sparse/qmr.m	Sun Apr 19 06:53:30 2015 -0300
+++ b/scripts/sparse/qmr.m	Sun Apr 19 10:18:08 2015 -0700
@@ -71,13 +71,13 @@
 ##
 ## @enumerate
 ## @item
-## R. Freund and N. Nachtigal, @cite{QMR: a quasi-minimal residual
-## method for non-Hermitian linear systems}, Numerische Mathematik,
+## @nospell{R. Freund and N. Nachtigal}, @cite{QMR: a quasi-minimal residual
+## method for non-Hermitian linear systems}, @nospell{Numerische Mathematik},
 ## 1991, 60, pp. 315-339.
 ##
 ## @item
-## R. Barrett, M. Berry, T. Chan, J. Demmel, J. Donato, J. Dongarra,
-## V. Eijkhour, R. Pozo, C. Romine, and H. van der Vorst,
+## @nospell{R. Barrett, M. Berry, T. Chan, J. Demmel, J. Donato, J. Dongarra},
+## @nospell{V. Eijkhour, R. Pozo, C. Romine, and H. van der Vorst},
 ## @cite{Templates for the solution of linear systems: Building blocks
 ## for iterative methods}, SIAM, 2nd ed., 1994.
 ## @end enumerate
--- a/scripts/strings/strsplit.m	Sun Apr 19 06:53:30 2015 -0300
+++ b/scripts/strings/strsplit.m	Sun Apr 19 10:18:08 2015 -0700
@@ -37,9 +37,9 @@
 ## (default) or @code{false}.
 ##
 ## @item @var{delimitertype} which may take the value of @qcode{"simple"}
-## (default) or @qcode{"regularexpression"}.  A simple delimiter matches the
-## text exactly as written.  Otherwise, the syntax for regular expressions
-## outlined in @code{regexp} is used.
+## (default) or @nospell{@qcode{"regularexpression"}}.  A simple delimiter
+## matches the text exactly as written.  Otherwise, the syntax for regular
+## expressions outlined in @code{regexp} is used.
 ## @end itemize
 ##
 ## The optional second output, @var{matches}, returns the delimiters which were
@@ -84,7 +84,7 @@
 ##
 ## @end example
 ##
-## Examples with regularexpression delimiters:
+## Examples with @nospell{regularexpression} delimiters:
 ##
 ## @smallexample
 ## strsplit ("a foo b,bar c", ',|\s|foo|bar', "delimitertype", "regularexpression")