Skip to content

Commit

Permalink
fix comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
timo committed Oct 30, 2013
1 parent 6421e06 commit 2259782
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/jvm/runtime/org/perl6/nqp/runtime/Ops.java
Expand Up @@ -3095,7 +3095,7 @@ public static String substr3(String val, long offset, long length) {
return val.substring((int)offset, end);
}

// does a have b as a substring at offset?
// does haystack have needle as a substring at offset?
public static long string_equal_at(String haystack, String needle, long offset) {
long haylen = haystack.length();
long needlelen = needle.length();
Expand Down

0 comments on commit 2259782

Please sign in to comment.