# HG changeset patch # User Rik # Date 1617923053 25200 # Node ID ec768b0f7dcde46812a1536298fa3ca6fd87b3d8 # Parent 4f555ba551e59d1d27ccfe357eded631bd23c31d doc: Use Texinfo commands to improve transpose() docstring rendering. * data.cc (Ftranspose): Use '@:' syntax to remove excess spacing after a non-sentence ending period. * data.cc (Fuplus): Remove "minus" from @seealso link to make docstring consistent with Fuminus. diff -r 4f555ba551e5 -r ec768b0f7dcd libinterp/corefcn/data.cc --- a/libinterp/corefcn/data.cc Thu Apr 08 15:34:33 2021 -0700 +++ b/libinterp/corefcn/data.cc Thu Apr 08 16:04:13 2021 -0700 @@ -5950,7 +5950,7 @@ doc: /* -*- texinfo -*- @deftypefn {} {} uplus (@var{x}) This function and @w{@tcode{+ @var{x}}} are equivalent. -@seealso{uminus, plus, minus} +@seealso{uminus, plus} @end deftypefn */) { return unary_op_defun_body (octave_value::op_uplus, args); @@ -5971,7 +5971,7 @@ @deftypefn {} {} transpose (@var{x}) Return the transpose of @var{x}. -This function and @tcode{@var{x}.'} are equivalent. +This function and @tcode{@var{x}.'@:} are equivalent. @seealso{ctranspose} @end deftypefn */) {