# HG changeset patch # User Augie Fackler # Date 1439866572 14400 # Node ID 84dcc37b1272ad28ef1be4cb0f227836a5f1ef95 # Parent 7617bc7b0c9716e9edf6fbcc3a8fd31fa0471486 histedit: correct spelling etc in more comments Spotted during review of another patch. diff -r 7617bc7b0c97 -r 84dcc37b1272 hgext/histedit.py --- a/hgext/histedit.py Fri Jul 31 12:54:16 2015 -0700 +++ b/hgext/histedit.py Mon Aug 17 22:56:12 2015 -0400 @@ -1034,15 +1034,15 @@ allsuccs = set() replaced = set() fullmapping = {} - # initialise basic set - # fullmapping record all operations recorded in replacement + # initialize basic set + # fullmapping records all operations recorded in replacement for rep in replacements: allsuccs.update(rep[1]) replaced.add(rep[0]) fullmapping.setdefault(rep[0], set()).update(rep[1]) new = allsuccs - replaced tmpnodes = allsuccs & replaced - # Reduce content fullmapping into direct relation between original nodes + # Reduce content fullmapping into direct relation between original nodes # and final node created during history edition # Dropped changeset are replaced by an empty list toproceed = set(fullmapping)