From 23281633a0ba502feb9aa62d95caddebc7ac1c99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Wed, 1 Jun 2022 18:45:03 +0200 Subject: [PATCH] Update introduction.md --- content/en/hugo-pipes/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/hugo-pipes/introduction.md b/content/en/hugo-pipes/introduction.md index 11bb4424e..a3c956885 100755 --- a/content/en/hugo-pipes/introduction.md +++ b/content/en/hugo-pipes/introduction.md @@ -60,7 +60,7 @@ With `resources.GetRemote`, the first argument is a remote URL: `resources.Copy` allows you to copy almost any Hugo `Resource` (the one exception is the `Page`), possibly most useful for renaming things: ```go-html-template -{{ $resized := $image.Resize "400x400" | resources.Copy "images/mynewname.jpg" } }} +{{ $resized := $image.Resize "400x400" | resources.Copy "images/mynewname.jpg" }} ```