diff libinterp/parse-tree/oct-parse.in.yy @ 24624:ce2eb28e0a6d

doc: make all Doxygen comment blocks more consistent * Array.h, dim-vector.h, gzip.cc, octave-link.h, octave-qt-link.h, oct-parse.in.yy, oct-string.h, ov-base.h, ov.h, ovl.h, str-vec.h: Use uniform C++ block commenting style consistent with the rest of Octave. Don't use unnecessary @brief or @class markers. Use @-style commands instead of \-style.
author Mike Miller <mtmiller@octave.org>
date Fri, 19 Jan 2018 19:59:28 -0800
parents 194eb4bd202b
children 8b346a19108e
line wrap: on
line diff
--- a/libinterp/parse-tree/oct-parse.in.yy	Fri Jan 19 15:09:42 2018 -0800
+++ b/libinterp/parse-tree/oct-parse.in.yy	Fri Jan 19 19:59:28 2018 -0800
@@ -5177,17 +5177,15 @@
 
 namespace octave
 {
-  /*!
-    Evaluate an Octave function (built-in or interpreted) and return
-    the list of result values.
-
-    @param name The name of the function to call.
-    @param args The arguments to the function.
-    @param nargout The number of output arguments expected.
-    @return A list of output values.  The length of the list is not
-    necessarily the same as @c nargout.
-
-  */
+  //! Evaluate an Octave function (built-in or interpreted) and return
+  //! the list of result values.
+  //!
+  //! @param name The name of the function to call.
+  //! @param args The arguments to the function.
+  //! @param nargout The number of output arguments expected.
+  //! @return A list of output values.  The length of the list is not
+  //!         necessarily the same as @c nargout.
+
   octave_value_list
   feval (const std::string& name, const octave_value_list& args, int nargout)
   {
@@ -5262,18 +5260,17 @@
 
 namespace octave
 {
-  /*!
-    Evaluate an Octave function (built-in or interpreted) and return
-    the list of result values.
-
-    @param args The first element of @c args is the function to call.
-    It may be the name of the function as a string, a function
-    handle, or an inline function.  The remaining arguments are
-    passed to the function.
-    @param nargout The number of output arguments expected.
-    @return A list of output values.  The length of the list is not
-    necessarily the same as @c nargout.
-  */
+  //! Evaluate an Octave function (built-in or interpreted) and return
+  //! the list of result values.
+  //!
+  //! @param args The first element of @c args is the function to call.
+  //!             It may be the name of the function as a string, a function
+  //!             handle, or an inline function.  The remaining arguments are
+  //!             passed to the function.
+  //! @param nargout The number of output arguments expected.
+  //! @return A list of output values.  The length of the list is not
+  //!         necessarily the same as @c nargout.
+
   octave_value_list
   feval (const octave_value_list& args, int nargout)
   {