mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-23 13:00:17 +00:00
fix comment
This commit is contained in:
parent
ccb0c8cd1c
commit
f5c67576aa
@ -15,7 +15,7 @@ static bool _stable_sort_merge(char* a,
|
||||
int res = f_lt(b, a, extra);
|
||||
// check error
|
||||
if(res == -1) return false;
|
||||
if(res == 0) { // !(b<a) -> (a>=b)
|
||||
if(res == 0) { // !(b<a) -> (b>=a) -> (a<=b)
|
||||
memcpy(r, a, elem_size);
|
||||
a += elem_size;
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user