# HG changeset patch # User Rik # Date 1302668277 25200 # Node ID 99babbf683ff232acad8a9b1e9aae28ac59f3138 # Parent 8c52ab9842c95982dcf95358264edd57f3acaa7d doc: Correct use of it's -> its in documentation. * expr.txi: Change it's -> its in discussion of short-circuiting. * load-path.cc (restoredefaultpath): Change it's -> its. diff --git a/doc/ChangeLog b/doc/ChangeLog --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,7 @@ +2011-04-12 Rik + + * interpreter/expr.txi: Correct use of it's -> its in documentation. + 2011-04-12 Ben Abbott * interpreter/data.txi: Replace xref{Data Structures} with diff --git a/doc/interpreter/expr.txi b/doc/interpreter/expr.txi --- a/doc/interpreter/expr.txi +++ b/doc/interpreter/expr.txi @@ -912,7 +912,7 @@ @sc{matlab} has special behavior that allows the operators @samp{&} and @samp{|} to short-circuit when used in the truth expression for @code{if} and @code{while} statements. The Octave parser may be instructed to behave in the -same manner, but it's use is strongly discouraged. +same manner, but its use is strongly discouraged. @DOCSTRING(do_braindead_shortcircuit_evaluation) diff --git a/src/ChangeLog b/src/ChangeLog --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2011-04-12 Rik + + * load-path.cc (restoredefaultpath): Correct use of it's -> its in + documentation. + 2011-04-10 John Eaton * graphics.cc (Fishandle) Accept vector of handles (bug #33025). diff --git a/src/load-path.cc b/src/load-path.cc --- a/src/load-path.cc +++ b/src/load-path.cc @@ -2037,7 +2037,7 @@ DEFUN (restoredefaultpath, , , "-*- texinfo -*-\n\ @deftypefn {Built-in Function} {} restoredefaultpath (@dots{})\n\ -Restore Octave's path to it's initial state at startup.\n\ +Restore Octave's path to its initial state at startup.\n\ \n\ @seealso{path, addpath, rmpath, genpath, pathdef, savepath, pathsep}\n\ @end deftypefn")