Skip to content

Commit

Permalink
#1444 fixed example
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeAndWeb committed Sep 17, 2024
1 parent 2ee6026 commit c3d8ae0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,8 @@ param = {value: 'world'};
You can construct the translation keys dynamically by using simple string concatenation inside the template:

```html
<ul *ngFor="let language of languages">
<li>{{ 'LANGUAGES.' + language | translate }}</li>
<ul>
<li *ngFor="let language of languages">{{ 'LANGUAGES.' + language | translate }}</li>
</ul>
```

Expand Down

0 comments on commit c3d8ae0

Please sign in to comment.