From ba66d6b9031e4920f97b5a1ccdd7c29f088132f0 Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Tue, 16 Apr 2024 08:50:41 -0700 Subject: [PATCH] Fix typo --- content/en/functions/strings/Diff/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/functions/strings/Diff/index.md b/content/en/functions/strings/Diff/index.md index 2fb9bf5ed..bb1299399 100644 --- a/content/en/functions/strings/Diff/index.md +++ b/content/en/functions/strings/Diff/index.md @@ -24,7 +24,7 @@ Use `strings.Diff` to compare two strings and render a highlighted diff:

The product of 7 and 6 is 13.

`}} -{{ $diff := strings.Diff "want" $want "got" $got" }} +{{ $diff := strings.Diff "want" $want "got" $got }} {{ transform.Highlight $diff "diff" }} ```