changeset 45930:cb728894f91d

helptext: fix sentence in extensions documentation Differential Revision: https://phab.mercurial-scm.org/D9366
author Matt Harbison <matt_harbison@yahoo.com>
date Sun, 22 Nov 2020 14:53:17 -0500
parents 87e7dd8e7734
children f177fcd9cb96
files mercurial/helptext/internals/extensions.txt
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/helptext/internals/extensions.txt	Mon Nov 23 11:47:06 2020 -0500
+++ b/mercurial/helptext/internals/extensions.txt	Sun Nov 22 14:53:17 2020 -0500
@@ -175,7 +175,7 @@
 
 Be aware that ``uisetup`` in NOT the function to configure a ``ui`` instance.
 It's called only once per process, not per ``ui`` instance. Also, any changes
-to the ``ui`` may be discarded because the ``ui`` here temporarily loaded
+to the ``ui`` may be discarded because the ``ui`` here is a temporarily loaded
 local configuration. So, it's generally wrong to do `ui.setconfig()` in
 these callbacks. Notable exception is setting ``pre/post-<command>`` hooks
 and extending ``ui.__class__``.