This commit is contained in:
Joe Mooring 2024-01-05 09:02:28 -08:00 committed by GitHub
parent e4a18946ea
commit 192d14df5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,7 +81,7 @@ To create a slice of slices, starting with an empty slice:
{{ $s = $s | append (slice (slice "a" "b")) }}
{{ $s }} → [[a b]]
{{ $s = $s | append (slice "c" "d") }}
{{ $s = $s | append (slice "c" "d") }}
{{ $s }} → [[a b] [c d]]
```