Skip to content

Commit

Permalink
Merge pull request #250 from masakichi-eng/fix-tutorial-template-weekday
Browse files Browse the repository at this point in the history
チュートリアルのテンプレートの曜日参照箇所を修正
  • Loading branch information
koriym authored Jan 15, 2024
2 parents d508c40 + 5246ca5 commit c58b9d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manuals/1.0/en/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,7 @@ In this way `text/html` media output can be set. Lastly, save your Twig template
{% raw %}{% extends 'layout/base.html.twig' %}
{% block title %}Weekday{% endblock %}
{% block content %}
The weekday of {{ year }}/{{ month }}/{{ day }} is {{ weekday.weekday }}.
The weekday of {{ year }}/{{ month }}/{{ day }} is {{ weekday }}.
{% endblock %}{% endraw %}
```

Expand Down
2 changes: 1 addition & 1 deletion manuals/1.0/ja/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ exit((new Bootstrap())(PHP_SAPI === 'cli' ? 'cli-html-app' : 'html-app', $GLOBAL
{% raw %}{% extends 'layout/base.html.twig' %}
{% block title %}Weekday{% endblock %}
{% block content %}
The weekday of {{ year }}/{{ month }}/{{ day }} is {{ weekday.weekday }}.
The weekday of {{ year }}/{{ month }}/{{ day }} is {{ weekday }}.
{% endblock %}{% endraw %}
```

Expand Down

0 comments on commit c58b9d0

Please sign in to comment.