changeset 12359:9cc3a087f44b octave-forge

doc: fix typo on Texinfo for @dict/dict.m.
author carandraug
date Tue, 04 Feb 2014 16:22:00 +0000
parents d60ca5dbcc00
children 965ea5723468
files main/general/inst/@dict/dict.m
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/main/general/inst/@dict/dict.m	Tue Feb 04 16:08:29 2014 +0000
+++ b/main/general/inst/@dict/dict.m	Tue Feb 04 16:22:00 2014 +0000
@@ -14,9 +14,9 @@
 ## this program; if not, see <http://www.gnu.org/licenses/>.
 
 ## -*- texinfo -*-
-## @deftypefn{Function File} {d =} dict (@var{keys}, @var{values})
-## @deftypefnx{Function File} {d =} dict ()
-## @deftypefnx{Function File} {d =} dict (@var{str})
+## @deftypefn  {Function File} {} dict ()
+## @deftypefnx {Function File} {} dict (@var{keys}, @var{values})
+## @deftypefnx {Function File} {} dict (@var{str})
 ## Creates a dictionary object with given keys and values.
 ##
 ## The class @code{dict} has been deprecated in favour of using Octave
@@ -30,7 +30,7 @@
 ## s.("7")
 ##   @result{} "value 7"
 ## s.("  ")
-## @result {} just spaces
+## @result{} just spaces
 ##   @result{} "just spaces"
 ## @end group
 ## @end example