Mercurial > public > mercurial-scm > hg
comparison mercurial/localrepo.py @ 17537:31f32a96e1e3
Merge spelling fixes
author | Bryan O'Sullivan <bryano@fb.com> |
---|---|
date | Tue, 11 Sep 2012 08:36:09 -0700 |
parents | fb72eec7efd8 e4b2f0ebd6e2 |
children | fc530080013b |
comparison
equal
deleted
inserted
replaced
17475:63e45aee46d4 | 17537:31f32a96e1e3 |
---|---|
297 | 297 |
298 @propertycache | 298 @propertycache |
299 def hiddenrevs(self): | 299 def hiddenrevs(self): |
300 """hiddenrevs: revs that should be hidden by command and tools | 300 """hiddenrevs: revs that should be hidden by command and tools |
301 | 301 |
302 This set is carried on the repo to ease initialisation and lazy | 302 This set is carried on the repo to ease initialization and lazy |
303 loading; it'll probably move back to changelog for efficiency and | 303 loading; it'll probably move back to changelog for efficiency and |
304 consistency reason | 304 consistency reasons. |
305 | 305 |
306 Note that the hiddenrevs will needs invalidations when | 306 Note that the hiddenrevs will needs invalidations when |
307 - a new changesets is added (possible unstable above extinct) | 307 - a new changesets is added (possible unstable above extinct) |
308 - a new obsolete marker is added (possible new extinct changeset) | 308 - a new obsolete marker is added (possible new extinct changeset) |
309 | 309 |