Skip to content

Commit 7b9e9ae

Browse files
authored
chore: polish a code comment
1 parent d96c349 commit 7b9e9ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/java/org/jruby/ext/stringio/StringIO.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1072,7 +1072,7 @@ public IRubyObject read(ThreadContext context) {
10721072
return readCommon(context, 0, null, null);
10731073
}
10741074

1075-
@JRubyMethod(name = "read") // // strio.read([length)
1075+
@JRubyMethod(name = "read") // strio.read(length)
10761076
public IRubyObject read(ThreadContext context, IRubyObject length) {
10771077
return readCommon(context, 1, length, null);
10781078
}

0 commit comments

Comments
 (0)