Fix example why manual-range-contains is disabled.

This commit is contained in:
Arseny Sher
2023-03-10 00:37:11 +04:00
committed by Arseny Sher
parent a34e78d084
commit d1a0f2f0eb

View File

@@ -13,7 +13,7 @@
# script that checks every feature.
#
# manual-range-contains wants
# !(8..=MAX_STARTUP_PACKET_LENGTH).contains(&len)
# !(4..=MAX_STARTUP_PACKET_LENGTH).contains(&len)
# instead of
# len < 4 || len > MAX_STARTUP_PACKET_LENGTH
# , let's disagree.