From e174a11f68257eba2cb7c2eea2366d0b1aaee7d6 Mon Sep 17 00:00:00 2001 From: Jonathan Arnett Date: Sun, 2 Jan 2022 23:23:14 -0500 Subject: [PATCH] Removed error in example --- corpus/functions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/corpus/functions.txt b/corpus/functions.txt index a946c1d48..42acf4fbf 100644 --- a/corpus/functions.txt +++ b/corpus/functions.txt @@ -16,7 +16,7 @@ fn replace( each pattern: String, with replacement: String ) { - string.replace(in: in, each: each, with: with) + string.replace(in: string, each: pattern, with: replacement) } ---