# HG changeset patch # User Augie Fackler # Date 2015-08-18 02:56:12 # Node ID 84dcc37b1272ad28ef1be4cb0f227836a5f1ef95 # Parent 7617bc7b0c9716e9edf6fbcc3a8fd31fa0471486 histedit: correct spelling etc in more comments Spotted during review of another patch. diff --git a/hgext/histedit.py b/hgext/histedit.py --- a/hgext/histedit.py +++ b/hgext/histedit.py @@ -1034,15 +1034,15 @@ def processreplacement(state): 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)