changegroup: update comment
Gratuitous fix, I stumbled upon this comment while reading code.
Differential Revision: https://phab.mercurial-scm.org/D10339
--- a/mercurial/changegroup.py Mon Apr 12 23:31:54 2021 -0400
+++ b/mercurial/changegroup.py Thu Apr 08 16:41:13 2021 +0200
@@ -570,7 +570,7 @@
"""
chain = None
for chunkdata in iter(lambda: self.deltachunk(chain), {}):
- # Chunkdata: (node, p1, p2, cs, deltabase, delta, flags)
+ # Chunkdata: (node, p1, p2, cs, deltabase, delta, flags, sidedata)
yield chunkdata
chain = chunkdata[0]