Fix a copy and pasting typo

This commit is contained in:
DJMcNab 2018-12-05 21:46:43 +00:00
parent 0b1c0ee225
commit 5da245ec33

View File

@ -28,7 +28,7 @@ impl<'s> Ptr<'s> {
}
/// Gets the nth character from the current.
/// For example, 0 will return the current token, 1 will return the next, etc.
/// For example, 0 will return the current character, 1 will return the next, etc.
pub fn nth(&self, n: u32) -> Option<char> {
self.chars().nth(n as usize)
}