##// END OF EJS Templates
spelling: fix minor spell checker issues
Mads Kiilerich -
r17738:b8424c92 default
parent child Browse files
Show More
@@ -35,7 +35,7 b' def reposetup(ui, repo):'
35 35 return orig.transaction(self, *args, **kwargs)
36 36
37 37 # TODO(durin42): kiilerix had a commented-out lock check in
38 # writebranchcache and _writerequirements
38 # _writebranchcache and _writerequirements
39 39
40 40 def _tag(self, *args, **kwargs):
41 41 _checklock(self)
@@ -205,7 +205,7 b' def collapse(repo, first, last, commitop'
205 205 - message
206 206 - date
207 207 - username
208 Edition of commit message is trigered in all case.
208 Commit message is edited in all cases.
209 209
210 210 This function works in memory."""
211 211 ctxs = list(repo.set('%d::%d', first, last))
@@ -264,7 +264,7 b' def validdest(repo, old, new):'
264 264 return True
265 265 elif repo.obsstore:
266 266 # We only need this complicated logic if there is obsolescence
267 # XXX will probably deserve an optimised rset.
267 # XXX will probably deserve an optimised revset.
268 268
269 269 validdests = set([old])
270 270 plen = -1
@@ -227,7 +227,7 b' def _hybridencode(path, dotencode):'
227 227 characters are encoded as '~xx', where xx is the two digit hex code
228 228 of the character (see encodefilename).
229 229 Relevant path components consisting of Windows reserved filenames are
230 masked by encoding the third character ('aux' -> 'au~78', see auxencode).
230 masked by encoding the third character ('aux' -> 'au~78', see _auxencode).
231 231
232 232 Hashed encoding (not reversible):
233 233
General Comments 0
You need to be logged in to leave comments. Login now