# HG changeset patch # User Christian Ebert # Date 2009-12-23 17:40:21 # Node ID 0ddbc029974250c3c94224e360bfd17215e3ddda # Parent fb890a546d44758b7a1cfea080246f4b8bff76e6 extensions help: make disabling example analogous to enabling example The example for enabling an extension in the module search path is: foo = foo can only be disabled by: foo = ! and not by: hgext.foo = ! As the examples now omit "hgext." the example hgext.bar = ! is misleading. diff --git a/help/extensions.txt b/help/extensions.txt --- a/help/extensions.txt +++ b/help/extensions.txt @@ -28,6 +28,6 @@ scope, prepend its path with !:: [extensions] # disabling extension bar residing in /path/to/extension/bar.py - hgext.bar = !/path/to/extension/bar.py + bar = !/path/to/extension/bar.py # ditto, but no path was supplied for extension baz - hgext.baz = ! + baz = !