revlog: fix misleading comment about _maxinline
authorArseniy Alekseyev <aalekseyev@janestreet.com>
Thu, 22 Dec 2022 16:57:56 +0000
changeset 49828 9854a9adc466
parent 49827 d09a57ce6fc4
child 49842 dcf983a5f906
revlog: fix misleading comment about _maxinline
mercurial/revlog.py
--- a/mercurial/revlog.py	Wed Dec 21 12:26:00 2022 +0100
+++ b/mercurial/revlog.py	Thu Dec 22 16:57:56 2022 +0000
@@ -128,7 +128,7 @@
 # Aliased for performance.
 _zlibdecompress = zlib.decompress
 
-# max size of revlog with inline data
+# max size of inline data embedded into a revlog
 _maxinline = 131072
 
 # Flag processors for REVIDX_ELLIPSIS.