From 0d45ea9cf90d1943cc3950774052e8d78e8021e1 Mon Sep 17 00:00:00 2001 From: Kaushal Modi Date: Thu, 13 Dec 2018 17:14:03 -0500 Subject: [PATCH] Fix order of arguments in another strings.TrimLeft example --- content/en/functions/strings.TrimLeft.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/content/en/functions/strings.TrimLeft.md b/content/en/functions/strings.TrimLeft.md index d42c57e06..6bbd62cf5 100644 --- a/content/en/functions/strings.TrimLeft.md +++ b/content/en/functions/strings.TrimLeft.md @@ -24,5 +24,4 @@ Given the string `"abba"`, leading `"a"`'s can be removed a follows: Numbers can be handled as well: - {{ strings.TrimLeft 1221 "12" }} → "" - + {{ strings.TrimLeft 12 1221341221 }} → "341221"