changeset 9646:3250035e724f octave-forge

miscellaneous: remove deprecated function map from seealso
author carandraug
date Mon, 12 Mar 2012 18:16:27 +0000
parents 73c4809881b0
children 0ff0c86afbe4
files main/miscellaneous/inst/match.m main/miscellaneous/inst/reduce.m
diffstat 2 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/main/miscellaneous/inst/match.m	Mon Mar 12 18:01:06 2012 +0000
+++ b/main/miscellaneous/inst/match.m	Mon Mar 12 18:16:27 2012 +0000
@@ -35,7 +35,7 @@
 ## match(@@(x) ( x >= 1 ), [-1 0 1 2])
 ##       @result{}   1   2
 ## @end example
-## @seealso{reduce, map, cellfun, arrayfun, cellfun, structfun, spfun}
+## @seealso{reduce, cellfun, arrayfun, cellfun, structfun, spfun}
 ## @end deftypefn
 
 function rval = match (fun_handle, data)
--- a/main/miscellaneous/inst/reduce.m	Mon Mar 12 18:01:06 2012 +0000
+++ b/main/miscellaneous/inst/reduce.m	Mon Mar 12 18:16:27 2012 +0000
@@ -32,7 +32,6 @@
 ##      reduce(@@(x,y)(x*y),[1:7]) 
 ##  @result{} 5040  (actually, 7!)
 ## @end example
-## @seealso{map}
 ## @end deftypefn
 
 ## Parts of documentation copied from the "Python Library Reference, v2.5"