Skip to content

Commit f7174c0

Browse files
committed
CS
1 parent 019239c commit f7174c0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/notification-center-pro/custom-tokens/examples/csv-attachment.de.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Dinge berechnen oder ähnliches. Hier ein ausführliches Beispiel mit Kommentare
7979
zusammen, die du brauchst!
8080

8181
```twig
82-
{# Definieren wir zunächst zwei Arrays für die Kopfzeile und die Werte-Zeile#}
82+
{# Definieren wir zunächst zwei Arrays für die Kopfzeile und die Werte-Zeile #}
8383
{% set header = [] %}
8484
{% set row = [] %}
8585

docs/notification-center-pro/custom-tokens/examples/csv-attachment.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ firstname,lastname,city
3434
Doing that manually is hard, this is why the Notification Center Pro provides its own `csv` Twig filter:
3535

3636
```twig
37-
{% set headers = [
37+
{% set header = [
3838
'firstname',
3939
'lastname',
4040
'city',
4141
] %}
42-
{{ headers|csv }}
42+
{{ header|csv }}
4343
{% set row = [
4444
parsedTokens.form_firstname|default(''),
4545
parsedTokens.form_lastname|default(''),

0 commit comments

Comments
 (0)