Closed decathorpe closed 11 months ago
It looks like there's a typo in the name of one public enum (Peak) and one public method (Jiter::peak):
Peak
Jiter::peak
Reading the documentation for what that type / method does, I suppose they should be named Peek / peek instead?
Peek
peek
Here's the corresponding trait from the Rust standard library: https://doc.rust-lang.org/stable/std/iter/struct.Peekable.html
Weird, I thought I already noticed this and fixed, apparently not.
PR welcome to correct this.
You're right, it should definitely be "peek"
It looks like there's a typo in the name of one public enum (
Peak
) and one public method (Jiter::peak
):Reading the documentation for what that type / method does, I suppose they should be named
Peek
/peek
instead?Here's the corresponding trait from the Rust standard library: https://doc.rust-lang.org/stable/std/iter/struct.Peekable.html