Fix typo in a TokenBuffer comment

This commit is contained in:
David Tolnay 2021-12-11 15:14:49 -08:00
parent 6ab8fbc751
commit 70a535799e
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -74,7 +74,7 @@ impl TokenBuffer {
}
TokenTree::Group(g) => {
// Record the index of the interesting entry, and store an
// `End(null)` there temporarially.
// `End(null)` there temporarily.
seqs.push((entries.len(), g));
entries.push(Entry::End(ptr::null()));
}