From: <car...@us...> - 2012-04-20 13:17:38
|
Revision: 10299 http://octave.svn.sourceforge.net/octave/?rev=10299&view=rev Author: carandraug Date: 2012-04-20 13:17:29 +0000 (Fri, 20 Apr 2012) Log Message: ----------- inputParser: small adjustement on documentation Modified Paths: -------------- trunk/octave-forge/main/general/inst/@inputParser/addOptional.m trunk/octave-forge/main/general/inst/@inputParser/addParamValue.m trunk/octave-forge/main/general/inst/@inputParser/addRequired.m trunk/octave-forge/main/general/inst/@inputParser/addSwitch.m Modified: trunk/octave-forge/main/general/inst/@inputParser/addOptional.m =================================================================== --- trunk/octave-forge/main/general/inst/@inputParser/addOptional.m 2012-04-19 18:28:07 UTC (rev 10298) +++ trunk/octave-forge/main/general/inst/@inputParser/addOptional.m 2012-04-20 13:17:29 UTC (rev 10299) @@ -31,6 +31,8 @@ ## for the argument with name @var{argname}. Alternatively, a function name ## can be used. ## +## See @command{help @inputParser} for examples. +## ## @emph{Note}: if @command{ParamValue} arguments are also specified, all @command{Optional} ## arguments will have to be specified before. ## Modified: trunk/octave-forge/main/general/inst/@inputParser/addParamValue.m =================================================================== --- trunk/octave-forge/main/general/inst/@inputParser/addParamValue.m 2012-04-19 18:28:07 UTC (rev 10298) +++ trunk/octave-forge/main/general/inst/@inputParser/addParamValue.m 2012-04-20 13:17:29 UTC (rev 10299) @@ -29,6 +29,8 @@ ## for the parameter with name @var{argname}. Alternatively, a function name ## can be used. ## +## See @command{help @inputParser} for examples. +## ## @seealso{inputParser, @@inputParser/addOptional, @@inputParser/addSwitch, ## @@inputParser/addParamValue, @@inputParser/addRequired, @@inputParser/parse} ## @end deftypefn Modified: trunk/octave-forge/main/general/inst/@inputParser/addRequired.m =================================================================== --- trunk/octave-forge/main/general/inst/@inputParser/addRequired.m 2012-04-19 18:28:07 UTC (rev 10298) +++ trunk/octave-forge/main/general/inst/@inputParser/addRequired.m 2012-04-20 13:17:29 UTC (rev 10299) @@ -31,7 +31,7 @@ ## for the argument with name @var{argname}. Alternatively, a function name ## can be used. ## -## See @command{help @@inputParser} for examples. +## See @command{help @inputParser} for examples. ## ## @emph{Note}: this can be used together with the other type of arguments but ## it must be the first (see @command{@@inputParser}). Modified: trunk/octave-forge/main/general/inst/@inputParser/addSwitch.m =================================================================== --- trunk/octave-forge/main/general/inst/@inputParser/addSwitch.m 2012-04-19 18:28:07 UTC (rev 10298) +++ trunk/octave-forge/main/general/inst/@inputParser/addSwitch.m 2012-04-20 13:17:29 UTC (rev 10299) @@ -27,7 +27,7 @@ ## arguments supplied is a string like @var{argname}, then after parsing the value ## of @var{parse}.Results.@var{argname} will be true. ## -## See @command{help @@inputParser} for examples. +## See @command{help inputParser} for examples. ## ## @seealso{inputParser, @@inputParser/addOptional, @@inputParser/addParamValue ## @@inputParser/addParamValue, @@inputParser/addRequired, @@inputParser/parse} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |