comparison mercurial/help/revsets.txt @ 11450:6bca9801c92a stable

revset: fix spelling typo
author Julian Cowley <julian@lava.net>
date Wed, 23 Jun 2010 16:54:12 -1000
parents a99ef3711890
children 39bac1821b12
comparison
equal deleted inserted replaced
11449:05af334bac05 11450:6bca9801c92a
19 19
20 ``x::y`` 20 ``x::y``
21 A DAG range, meaning all changesets that are descendants of x and 21 A DAG range, meaning all changesets that are descendants of x and
22 ancestors of y, including x and y themselves. If the first endpoint 22 ancestors of y, including x and y themselves. If the first endpoint
23 is left out, this is equivalent to ``ancestors(y)``, if the second 23 is left out, this is equivalent to ``ancestors(y)``, if the second
24 is left out it is equivalent to ``descendents(x)``. 24 is left out it is equivalent to ``descendants(x)``.
25 25
26 An alternative syntax is ``x..y``. 26 An alternative syntax is ``x..y``.
27 27
28 ``x:y`` 28 ``x:y``
29 All changesets with revision numbers between x and y, both 29 All changesets with revision numbers between x and y, both