Mercurial > public > mercurial-scm > hg
comparison mercurial/context.py @ 18644:3e92772d5383
spelling: fix some minor issues found by spell checker
author | Mads Kiilerich <mads@kiilerich.com> |
---|---|
date | Sun, 10 Feb 2013 18:24:29 +0100 |
parents | a2e9fe93d9ea |
children | 4fb92f14a97a |
comparison
equal
deleted
inserted
replaced
18643:cc28a84db8c9 | 18644:3e92772d5383 |
---|---|
424 except error.RepoLookupError: | 424 except error.RepoLookupError: |
425 # Linkrev may point to any revision in the repository. When the | 425 # Linkrev may point to any revision in the repository. When the |
426 # repository is filtered this may lead to `filectx` trying to build | 426 # repository is filtered this may lead to `filectx` trying to build |
427 # `changectx` for filtered revision. In such case we fallback to | 427 # `changectx` for filtered revision. In such case we fallback to |
428 # creating `changectx` on the unfiltered version of the reposition. | 428 # creating `changectx` on the unfiltered version of the reposition. |
429 # This fallback should not be an issue because`changectx` from | 429 # This fallback should not be an issue because `changectx` from |
430 # `filectx` are not used in complexe operation that care about | 430 # `filectx` are not used in complex operations that care about |
431 # filtering. | 431 # filtering. |
432 # | 432 # |
433 # This fallback is a cheap and dirty fix that prevent several | 433 # This fallback is a cheap and dirty fix that prevent several |
434 # crash. It does not ensure the behavior is correct. However the | 434 # crashes. It does not ensure the behavior is correct. However the |
435 # behavior was not correct before filtering either and "incorrect | 435 # behavior was not correct before filtering either and "incorrect |
436 # behavior" is seen as better as "crash" | 436 # behavior" is seen as better as "crash" |
437 # | 437 # |
438 # Linkrevs have several serious troubles with filtering that are | 438 # Linkrevs have several serious troubles with filtering that are |
439 # complicated to solve. Proper handling of the issue here should be | 439 # complicated to solve. Proper handling of the issue here should be |