commit | e9593d50755cfdd157d1bd67a02a1314f9ccedb5 | [log] [tgz] |
---|---|---|
author | Yonatan Goldschmidt <yon.goldschmidt@gmail.com> | Sun Jul 21 23:23:11 2019 +0300 |
committer | Damien George <damien.p.george@gmail.com> | Thu Jul 25 16:37:25 2019 +1000 |
tree | 41f76d1b7cc5fc73c31759edaddda0b052db6aab | |
parent | 3b258ef213d34b402c170fbb63dafbab53ea91b2 [diff] [blame] |
py/sequence: Fix grammar in comment about equality.
diff --git a/py/sequence.c b/py/sequence.c index c66fde9..4c19fc6 100644 --- a/py/sequence.c +++ b/py/sequence.c
@@ -165,7 +165,7 @@ size_t min_len = len1 < len2 ? len1 : len2; int res = memcmp(data1, data2, min_len); if (op == MP_BINARY_OP_EQUAL) { - // If we are checking for equality, here're the answer + // If we are checking for equality, here's the answer return res == 0; } if (res < 0) {