diff doc/interpreter/func.txi @ 5763:2d055c8fa019

[project @ 2006-04-14 16:54:40 by jwe]
author jwe
date Fri, 14 Apr 2006 16:54:40 +0000
parents bdbee5282954
children ace8d8d26933
line wrap: on
line diff
--- a/doc/interpreter/func.txi	Fri Apr 14 15:37:38 2006 +0000
+++ b/doc/interpreter/func.txi	Fri Apr 14 16:54:40 2006 +0000
@@ -373,12 +373,12 @@
 without adding extra logic to avoid printing the message if the vector
 does contain a nonzero element.
 
-@defvr {Keyword} return
+@deffn {Keyword} return
 When Octave encounters the keyword @code{return} inside a function or
 script, it returns control to the caller immediately. At the top level,
 the return statement is ignored.  A @code{return} statement is assumed
 at the end of every function definition.
-@end defvr
+@end deffn
 
 @DOCSTRING(return_last_computed_value)