# HG changeset patch # User Ollie Rutherfurd # Date 2011-06-20 02:33:25 # Node ID 848a6658069eb88a920ac3ec1220c0c53fae9d0e # Parent 388af80c058b491089e1c680ed67df0ef30d6e4b fileset: use correct function name for hgignore in docstring docstring refereed to "resolved" instead of "hgignore" diff --git a/mercurial/fileset.py b/mercurial/fileset.py --- a/mercurial/fileset.py +++ b/mercurial/fileset.py @@ -228,7 +228,7 @@ def unresolved(mctx, x): return [f for f in mctx.subset if f in ms and ms[f] == 'u'] def hgignore(mctx, x): - """``resolved()`` + """``hgignore()`` File that matches the active .hgignore pattern. """ getargs(x, 0, 0, _("hgignore takes no arguments"))