Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo in documentation and readme #1444

Open
kurtivdb opened this issue Aug 13, 2023 · 0 comments
Open

Typo in documentation and readme #1444

kurtivdb opened this issue Aug 13, 2023 · 0 comments

Comments

@kurtivdb
Copy link

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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant