Update comment

This commit is contained in:
Mark Mansi 2018-01-29 16:37:57 -06:00
parent e2d558ad56
commit 2184400be7

View File

@ -113,7 +113,8 @@ enum TokenTreeOrTokenTreeVec {
}
impl TokenTreeOrTokenTreeVec {
/// Returns the number of constituent token trees of `self`.
/// Returns the number of constituent top-level token trees of `self` (top-level in that it
/// will not recursively descend into subtrees).
fn len(&self) -> usize {
match *self {
TtSeq(ref v) => v.len(),