Skip to content

Commit

Permalink
Fix typo in a method name comment (#4853)
Browse files Browse the repository at this point in the history
* Fix typo in a method name comment [ci skip]

* RipperLexer: docblock comment typo [ci skip]
olleolleolle authored and BanzaiMan committed Nov 12, 2017
1 parent 0cd7cf9 commit 75b4228
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/src/main/java/org/jruby/ext/ripper/RipperLexer.java
Original file line number Diff line number Diff line change
@@ -710,7 +710,7 @@ public boolean hasScanEvent() {
return lex_p > tokp;
}

public void dispatchDelayedToken(int token) { //mri: rupper_dispatch_delayed_token
public void dispatchDelayedToken(int token) { //mri: ripper_dispatch_delayed_token
int saved_line = ruby_sourceline;
int saved_tokp = tokp;

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

/**
* Returns the next token. Also sets yyVal is needed.
* Returns the next token. Also sets yyVal as needed.
*
*@return Description of the Returned Value
* @return the next token
*/
private int yylex() throws IOException {
int c;

0 comments on commit 75b4228

Please sign in to comment.