# HG changeset patch # User John W. Eaton # Date 1232467762 18000 # Node ID faccdb98d9539dcc687dce0a3c239dd3bed2f3af # Parent c0d71b4deeb7fbb3fa96c7981ab0936ccee7625b postpad.m, prepad.m: doc fix diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,5 +1,7 @@ 2009-01-20 John W. Eaton + * general/postpad.m: Doc fix. + * general/prepad.m: Doc fix. * image/pink.m: Spelling fix. * image/hsv.m: Doc fix. From Francesco Potorti` . diff --git a/scripts/general/postpad.m b/scripts/general/postpad.m --- a/scripts/general/postpad.m +++ b/scripts/general/postpad.m @@ -19,6 +19,7 @@ ## -*- texinfo -*- ## @deftypefn {Function File} {} postpad (@var{x}, @var{l}, @var{c}) +## @deftypefnx {Function File} {} postpad (@var{x}, @var{l}, @var{c}, @var{dim}) ## @seealso{prepad, resize} ## @end deftypefn diff --git a/scripts/general/prepad.m b/scripts/general/prepad.m --- a/scripts/general/prepad.m +++ b/scripts/general/prepad.m @@ -19,10 +19,8 @@ ## -*- texinfo -*- ## @deftypefn {Function File} {} prepad (@var{x}, @var{l}, @var{c}) -## @deftypefnx {Function File} {} postpad (@var{x}, @var{l}, @var{c}) -## @deftypefnx {Function File} {} postpad (@var{x}, @var{l}, @var{c}, @var{dim}) -## -## Prepends (appends) the scalar value @var{c} to the vector @var{x} +## @deftypefnx {Function File} {} prepad (@var{x}, @var{l}, @var{c}, @var{dim}) +## Prepend (append) the scalar value @var{c} to the vector @var{x} ## until it is of length @var{l}. If the third argument is not ## supplied, a value of 0 is used. ##