Skip to content

Commit 75b4228

Browse files
olleolleolleBanzaiMan
authored andcommittedNov 12, 2017
Fix typo in a method name comment (#4853)
* Fix typo in a method name comment [ci skip] * RipperLexer: docblock comment typo [ci skip]
1 parent 0cd7cf9 commit 75b4228

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

Diff for: ‎core/src/main/java/org/jruby/ext/ripper/RipperLexer.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ public boolean hasScanEvent() {
710710
return lex_p > tokp;
711711
}
712712

713-
public void dispatchDelayedToken(int token) { //mri: rupper_dispatch_delayed_token
713+
public void dispatchDelayedToken(int token) { //mri: ripper_dispatch_delayed_token
714714
int saved_line = ruby_sourceline;
715715
int saved_tokp = tokp;
716716

@@ -923,9 +923,9 @@ private int yylex2() throws IOException {
923923
}
924924

925925
/**
926-
* Returns the next token. Also sets yyVal is needed.
926+
* Returns the next token. Also sets yyVal as needed.
927927
*
928-
*@return Description of the Returned Value
928+
* @return the next token
929929
*/
930930
private int yylex() throws IOException {
931931
int c;

0 commit comments

Comments
 (0)
Please sign in to comment.