# HG changeset patch # User Martin von Zweigbergk # Date 2017-01-12 20:05:23 # Node ID ff020ee5f06c11fb718d8793f865c1068eb1b9e4 # Parent e2a6f383d314e51c48dff52730d8ac9d3f8347f1 bisect: refer directly to bisect() revset predicate in help We have specific syntax for displaying the help text for a particular revset predicate, so let's refer directly to the bisect() revset in the verbose bisect help. It seems likely that the user doesn't care about other revsets at that point, so they will probably not miss the text about the other revset predicates. diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -823,7 +823,7 @@ def bisect(ui, repo, rev=None, extra=Non hg log --graph -r "bisect(range)" - See :hg:`help revsets` for more about the `bisect()` keyword. + See :hg:`help revisions.bisect` for more about the `bisect()` predicate. Returns 0 on success. """