In the search algorithms summary (<http://dlang.org/phobos/std_algorithm_searching.html>) we have:
findSkip If a = "abcde", then findSkip(a, "x") returns false and leaves a unchanged, whereas findSkip(a, 'c') advances a to "cde" and returns true.
This is incorrect. findSkip actually advances to "de". Also, it should be `findSkip(a, "c")`, with double quotes around the `c`.
Comment #1 by ag0aep6g — 2015-08-06T20:27:08Z
Can you make a pull request for this, Luís?
Comment #2 by luis — 2015-08-06T23:20:53Z
(In reply to ag0aep6g from comment #1)
> Can you make a pull request for this, Luís?
Yes. I just thought experienced people with already cloned repos would do it faster. Give me one or two days (time to go to sleep here).