# HG changeset patch # User Dan Villiom Podlaski Christiansen # Date 1278666825 -7200 # Node ID 94b3bbc886cfee7f5d75da11eaaf21e4c7424d9d # Parent bbdf1fb1d3e3b505833e91f4d79c7f788862271e extensions: improve language for wrapfunction() docstring. diff -r bbdf1fb1d3e3 -r 94b3bbc886cf mercurial/extensions.py --- a/mercurial/extensions.py Fri Jul 09 10:57:57 2010 +0200 +++ b/mercurial/extensions.py Fri Jul 09 11:13:45 2010 +0200 @@ -138,8 +138,8 @@ def wrapfunction(container, funcname, wrapper): '''Wrap the function named funcname in container - It is replacing with your wrapper. The container is typically a - module, class, or instance. + Replace the funcname member in the given container with the specified + wrapper. The container is typically a module, class, or instance. The wrapper will be called like