Skip to content

Commit 5514a53

Browse files
committed
Fix typo
1 parent 9aa5552 commit 5514a53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rascal-textmate-core/src/main/rascal/util/ListUtil.rsc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ list[&T] dupLast(list[&T] l) = reverse(dup(reverse(l))); // TODO: Optimize/avoid
3232
}
3333

3434
bool isStrictPrefix(list[&T] l1, list[&T] l2)
35-
= size(l1) < size(l2) && l1 == l2[..size(l2)];
35+
= size(l1) < size(l2) && l1 == l2[..size(l1)];

0 commit comments

Comments
 (0)