Skip to content

Commit 03a3ca5

Browse files
committed
fix(dev): fix missing closing parenthesis in reference.rst template examples
{{ t('myapp', 'Title' }} and {{ t('myapp', 'Extra info' }} were both missing the closing ) before }}. AI-Assisted-By: claude-sonnet-4-6 <noreply@anthropic.com> Signed-off-by: Anna Larch <anna@nextcloud.com>
1 parent 77994d5 commit 03a3ca5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

developer_manual/digging_deeper/reference.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -658,15 +658,15 @@ in a custom fashion:
658658
<div v-if="richObject">
659659
<div>
660660
<label>
661-
{{ t('myapp', 'Title' }}
661+
{{ t('myapp', 'Title') }}
662662
</label>
663663
<span>
664664
{{ richObject.title }}
665665
</span>
666666
<div>
667667
<div>
668668
<label>
669-
{{ t('myapp', 'Extra info' }}
669+
{{ t('myapp', 'Extra info') }}
670670
</label>
671671
<span>
672672
{{ richObject.extra_info }}

0 commit comments

Comments
 (0)