From 41f1e032ce609336a4d047c478f3424bc77c1e1b Mon Sep 17 00:00:00 2001 From: Simon Lindh Date: Sat, 8 Aug 2020 22:40:56 +0700 Subject: [PATCH] Corrected readme. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9579f281..48446d8f 100644 --- a/README.md +++ b/README.md @@ -14,15 +14,15 @@ Customizable multiselect dropdown in Angular(9+), TypeScript with Bootstrap css. ## Usage -Import `MultiselectDropdown` into your @NgModule. +Import `NgxBootstrapMultiselectModule` into your @NgModule. ```js -import { MultiselectDropdownModule } from 'ngx-bootrap-multiselect'; +import { NgxBootstrapMultiselectModule } from 'ngx-bootrap-multiselect'; @NgModule({ // ... imports: [ - MultiselectDropdownModule, + NgxBootstrapMultiselectModule, ] // ... })