# HG changeset patch # User Julian Cowley # Date 2010-06-24 02:54:12 # Node ID 6bca9801c92a3ee4c9399ca7452ea1e648fea19f # Parent 05af334bac059ef0f2d470310228ecae70f24129 revset: fix spelling typo diff --git a/mercurial/help/revsets.txt b/mercurial/help/revsets.txt --- a/mercurial/help/revsets.txt +++ b/mercurial/help/revsets.txt @@ -21,7 +21,7 @@ These are the supported infix operators: A DAG range, meaning all changesets that are descendants of x and ancestors of y, including x and y themselves. If the first endpoint is left out, this is equivalent to ``ancestors(y)``, if the second - is left out it is equivalent to ``descendents(x)``. + is left out it is equivalent to ``descendants(x)``. An alternative syntax is ``x..y``.