diff scripts/strings/regexptranslate.m @ 10821:693e22af08ae

Grammarcheck documentation of m-files Add newlines between @item fields for readability.
author Rik <octave@nomad.inbox5.com>
date Mon, 26 Jul 2010 21:25:36 -0700
parents 95c3e38098bf
children c776f063fefe
line wrap: on
line diff
--- a/scripts/strings/regexptranslate.m	Mon Jul 26 07:41:23 2010 -0400
+++ b/scripts/strings/regexptranslate.m	Mon Jul 26 21:25:36 2010 -0700
@@ -28,6 +28,7 @@
 ## The wildcard characters @code{.}, @code{*} and @code{?} are replaced
 ## with wildcards that are appropriate for a regular expression. 
 ## For example:
+##
 ## @example
 ## @group
 ## regexptranslate ("wildcard", "*.m")
@@ -38,12 +39,14 @@
 ## @item "escape"
 ## The characters @code{$.?[]}, that have special meaning for regular
 ## expressions are escaped so that they are treated literally.  For example:
+##
 ## @example
 ## @group
 ## regexptranslate ("escape", "12.5")
 ##      @result{} "12\.5"
 ## @end group
 ## @end example
+##
 ## @end table
 ## @seealso{regexp, regexpi, regexprep}
 ## @end deftypefn