Skip to content

Commit

Permalink
fix(docs): wrong NbEvaIconsModule import (#1623)
Browse files Browse the repository at this point in the history
  • Loading branch information
rjlopezdev authored and yggg committed Jun 17, 2019
1 parent ad26059 commit a1c5e0c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ There are two ways to upgrade:
1) install Eva Icons Nebular package `npm i @nebular/eva-icons`
2) register `NbEvaIconsModule` in the `app.module.ts`
```
import { NbEvaIconsModule } form '@nebular/eva-icons';
import { NbEvaIconsModule } from '@nebular/eva-icons';
@NgModule({
imports: [
Expand Down
2 changes: 1 addition & 1 deletion docs/articles/migration/350-400.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ npm i @nebular/eva-icons

2) register `NbEvaIconsModule` in the `app.module.ts`
```ts
import { NbEvaIconsModule } form '@nebular/eva-icons';
import { NbEvaIconsModule } from '@nebular/eva-icons';

@NgModule({
imports: [
Expand Down
2 changes: 1 addition & 1 deletion src/framework/theme/components/icon/icon.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import { NbIconLibraries } from './icon-libraries';
* This command will install Nebular Eva Icons pack. Then register `NbEvaIconsModule` into your app module or any child
* module you need to have the icons in:
* ```ts
* import { NbEvaIconsModule } form '@nebular/eva-icons';
* import { NbEvaIconsModule } from '@nebular/eva-icons';
*
* @NgModule({
* imports: [
Expand Down

0 comments on commit a1c5e0c

Please sign in to comment.