Skip to content

Commit

Permalink
Fix broken code example
Browse files Browse the repository at this point in the history
  • Loading branch information
LadyCailin committed Aug 21, 2023
1 parent f88da2c commit 62587c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/docs/Varargs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ In order to use varargs, the Callable needs to be specially defined.
<%CODE|
void proc _varargTest(string... @values) {
// Within the proc, @values is actually defined as an array of strings, not a single string object.
foreach(string @s in @values) {'
foreach(string @s in @values) {
msg(@s);
}
}
Expand Down

0 comments on commit 62587c3

Please sign in to comment.