summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/path.Split.md
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2021-01-20 12:48:39 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2021-01-20 12:48:39 +0100
commita1a9f088b1b087b0991f8890865c95b359eea51c (patch)
tree5cb5ed0fb1445b24f42ce116d363fac72a74c89a /docs/content/en/functions/path.Split.md
parent07ad283f686904e5835f621d73ed342ba2a48eb3 (diff)
parente48ffb763572814a3788780bb9653dfa2daeae22 (diff)
Diffstat (limited to 'docs/content/en/functions/path.Split.md')
-rw-r--r--docs/content/en/functions/path.Split.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/content/en/functions/path.Split.md b/docs/content/en/functions/path.Split.md
index d6bc15ce9..2d6aff6bb 100644
--- a/docs/content/en/functions/path.Split.md
+++ b/docs/content/en/functions/path.Split.md
@@ -25,7 +25,7 @@ If there is no slash in `PATH`, it returns an empty directory and the base is se
**Note:** On Windows, `PATH` is converted to slash (`/`) separators.
```
-{{ path.Split "a/news.html" }} → "a/", "news.html"
-{{ path.Split "news.html" }} → "", "news.html"
-{{ path.Split "a/b/c" }} → "a/b/", "c"
+{{ $dirFile := path.Split "a/news.html" }} → $dirDile.Dir → "a/", $dirFile.File → "news.html"
+{{ $dirFile := path.Split "news.html" }} → $dirDile.Dir → "", $dirDile.File → "news.html"
+{{ $dirFile := path.Split "a/b/c" }} → $dirDile.Dir → "a/b/", $dirDile.File → "c"
```