##// END OF EJS Templates
revset: fix example describing how ordering is determined...
Yuya Nishihara -
r34019:62cc1f17 default
parent child Browse files
Show More
@@ -64,13 +64,13 b' fullreposet = smartset.fullreposet'
64 64 #
65 65 # 'any' means the order doesn't matter. For instance,
66 66 #
67 # (X & Y) | ancestors(Z)
68 # ^ ^
69 # any any
67 # (X & !Y) | ancestors(Z)
68 # ^ ^
69 # any any
70 70 #
71 # For 'X & Y', 'X' decides order so the order of 'Y' does not matter. For
72 # 'ancestors(Z)', Z's order does not matter since 'ancestors' does not care
73 # about the order of its argument.
71 # For 'X & !Y', 'X' decides the order and 'Y' is subtracted from 'X', so the
72 # order of 'Y' does not matter. For 'ancestors(Z)', Z's order does not matter
73 # since 'ancestors' does not care about the order of its argument.
74 74 #
75 75 # Currently, most revsets do not care about the order, so 'define' is
76 76 # equivalent to 'follow' for them, and the resulting order is based on the
General Comments 0
You need to be logged in to leave comments. Login now