Skip to content

Commit

Permalink
fixed parse error
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgenvinju committed Nov 7, 2024
1 parent f3d40a2 commit 1d8e9ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/rascalmpl/library/List.rsc
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ dup([3, 1, 5, 3, 1, 7, 1, 2]);
list[&T] dup(list[&T] lst)
= ([] | (ix in it) ? it : it + [ix] | &T ix <- lst);

@deprecated Use a list index instead}
@deprecated{Use a list index instead}
@javaClass{org.rascalmpl.library.Prelude}
java &T elementAt(list[&T] lst, int index);

Expand Down

0 comments on commit 1d8e9ee

Please sign in to comment.