From 62587c3e6fa58141ff656048d21c03535ec02872 Mon Sep 17 00:00:00 2001 From: LadyCailin Date: Mon, 21 Aug 2023 22:23:50 +0200 Subject: [PATCH] Fix broken code example --- src/main/resources/docs/Varargs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/docs/Varargs b/src/main/resources/docs/Varargs index 8d2798365..a6c13d087 100644 --- a/src/main/resources/docs/Varargs +++ b/src/main/resources/docs/Varargs @@ -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); } }