Merge pull request #25783 from nvogel/master

Fix documentation example for the indent function
This commit is contained in:
Kristin Laemmert 2020-08-12 09:34:07 -04:00 committed by GitHub
commit 7111d8deb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ This function is useful for inserting a multi-line string into an
already-indented context in another string:
```
> " items: %{indent(2, "[\n foo,\n bar,\n]\n")}"
> " items: ${indent(2, "[\n foo,\n bar,\n]\n")}"
items: [
foo,
bar,