From 22597826de162e35f624eed93cc2148ae034e01b Mon Sep 17 00:00:00 2001 From: Timo Paulssen Date: Tue, 8 Oct 2013 22:25:26 +0200 Subject: [PATCH] fix comment. --- src/vm/jvm/runtime/org/perl6/nqp/runtime/Ops.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vm/jvm/runtime/org/perl6/nqp/runtime/Ops.java b/src/vm/jvm/runtime/org/perl6/nqp/runtime/Ops.java index 0dd2cf0c6e..795bbc3547 100644 --- a/src/vm/jvm/runtime/org/perl6/nqp/runtime/Ops.java +++ b/src/vm/jvm/runtime/org/perl6/nqp/runtime/Ops.java @@ -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();