core icon indicating copy to clipboard operation
core copied to clipboard

Typo in documentation and readme

Open kurtivdb opened this issue 1 year ago • 0 comments

There is a typo in the documentation. The ngFor is wrongly placed on the ul tag.

Current docs

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

Should be

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

kurtivdb avatar Aug 13 '23 14:08 kurtivdb