NAITOH Jun 373f679e48 fix rb_memsearch() document
## Why?
The explanation of x and y is reversed.

ddbd644001/re.c (L251-L256)
```
long
rb_memsearch(const void *x0, long m, const void *y0, long n, rb_encoding *enc)
{
    const unsigned char *x = x0, *y = y0;

    if (m > n) return -1;
```
2024-09-24 15:12:48 +09:00
..
2024-09-24 15:12:48 +09:00
2024-06-21 09:25:00 +09:00
2024-06-07 10:42:41 +09:00
2024-02-21 15:38:29 +09:00