From e59a8805b92e5fab9e75da0809597834d0293fc8 Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Wed, 17 Apr 2024 05:57:00 -0700 Subject: [PATCH] Fix typo --- content/en/functions/strings/Diff/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/functions/strings/Diff/index.md b/content/en/functions/strings/Diff/index.md index bb1299399..fa3f41c7d 100644 --- a/content/en/functions/strings/Diff/index.md +++ b/content/en/functions/strings/Diff/index.md @@ -14,12 +14,12 @@ action: Use `strings.Diff` to compare two strings and render a highlighted diff: ```go-html-template -{{ $want = ` +{{ $want := `

The product of 6 and 7 is 42.

The product of 7 and 6 is 42.

`}} -{{ $got = ` +{{ $got := `

The product of 6 and 7 is 42.

The product of 7 and 6 is 13.

`}}