diff scripts/strings/strjoin.m @ 18185:1874a5a142ee stable

doc: Fix documentation for strsplit (bug #41062). * strsplit.m: Remove redundant sentence about delimiter del. Don't use unnecessary hyphen in "cell string array" phrasing. Correct typo of "delmiters". * strjoin.m: Don't use unnecessary hyphen in "cell string array" phrasing.
author Rik <rik@octave.org>
date Wed, 01 Jan 2014 17:54:46 -0800
parents 1c89599167a6
children 446c46af4b42
line wrap: on
line diff
--- a/scripts/strings/strjoin.m
+++ b/scripts/strings/strjoin.m
@@ -20,18 +20,18 @@
 ## -*- texinfo -*-
 ## @deftypefn  {Function File} {@var{str} =} strjoin (@var{cstr})
 ## @deftypefnx {Function File} {@var{str} =} strjoin (@var{cstr}, @var{delimiter})
-## Join the elements of the cell-string array, @var{cstr}, into a single
+## Join the elements of the cell string array, @var{cstr}, into a single
 ## string.
 ##
 ## If no @var{delimiter} is specified, the elements of @var{cstr}
 ## separated by a space.
 ##
-## If @var{delimiter} is specified as a string, the cell-string array is
+## If @var{delimiter} is specified as a string, the cell string array is
 ## joined using the string.  Escape sequences are supported.
 ##
-## If @var{delimiter} is a cell-string array whose length is one less
+## If @var{delimiter} is a cell string array whose length is one less
 ## than @var{cstr}, then the elements of @var{cstr} are joined by
-## interleaving the cell-string elements of @var{delimiter}.  Escape
+## interleaving the cell string elements of @var{delimiter}.  Escape
 ## sequences are not supported.
 ##
 ## @example