diff -r 8b5adc6b72ae -r 4dd8a6a1240d mercurial/transaction.py --- a/mercurial/transaction.py Sat Dec 13 09:45:00 2014 +0100 +++ b/mercurial/transaction.py Thu Apr 17 22:47:38 2014 +0200 @@ -129,13 +129,13 @@ # hold file generations to be performed on commit self._filegenerators = {} - # hold callbalk to write pending data for hooks + # hold callback to write pending data for hooks self._pendingcallback = {} # True is any pending data have been written ever self._anypending = False # holds callback to call when writing the transaction self._finalizecallback = {} - # hold callbalk for post transaction close + # hold callback for post transaction close self._postclosecallback = {} def __del__(self): @@ -250,7 +250,7 @@ The `location` arguments may be used to indicate the files are located outside of the the standard directory for transaction. It should match - one of the key of the `transaction.vfsmap` dictionnary. + one of the key of the `transaction.vfsmap` dictionary. """ # For now, we are unable to do proper backup and restore of custom vfs # but for bookmarks that are handled outside this mechanism.