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 e9dc562
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 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
4 changes: 2 additions & 2 deletions packages/core/core.docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,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
4 changes: 2 additions & 2 deletions packages/http-loader/http-loader.docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,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 e9dc562

Please sign in to comment.