From 0b4fa240c57baff187dbd5b689d6250472288bd9 Mon Sep 17 00:00:00 2001 From: Terence Parr Date: Sun, 1 Jul 2012 10:55:31 -0700 Subject: [PATCH] alter comment --- runtime/Java/src/org/antlr/v4/runtime/Lexer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/Java/src/org/antlr/v4/runtime/Lexer.java b/runtime/Java/src/org/antlr/v4/runtime/Lexer.java index 019db3971..982b7ce20 100644 --- a/runtime/Java/src/org/antlr/v4/runtime/Lexer.java +++ b/runtime/Java/src/org/antlr/v4/runtime/Lexer.java @@ -231,8 +231,8 @@ public abstract class Lexer extends Recognizer /** Currently does not support multiple emits per nextToken invocation * for efficiency reasons. Subclass and override this method and - * nextToken (to push tokens into a list and pull from that list rather - * than a single variable as this implementation does). + * nextToken (to push tokens into a list and pull from that list, + * respectively, rather than a single variable as this implementation does). */ public void emit(Token token) { getInterpreter().traceEmit(token);