Skip to content

Commit 1d2f9a1

Browse files
committed
docs: fix typo
1 parent 765fedd commit 1d2f9a1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ with this code in place, we can now use the following CSP meta tag (which is wha
157157
**Migration Example:**
158158
159159
```diff
160-
// 1. load every locale individually, it could be import in 2 ways (named import OR import on window object)
160+
// 1. load every locale individually, it could be imported in 2 ways (named import OR import on window object)
161161
// named import
162162
- import { Spanish } from 'multiple-select-vanilla/dist/locales/multiple-select-es-ES.js';
163163
+ import { Spanish } from 'multiple-select-vanilla/dist/locales/es-ES.js';

packages/demo/src/examples/example09.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { type LocaleKey, type MultipleSelectInstance, multipleSelect } from 'multiple-select-vanilla';
22

3-
// 1. load every locale individually, it could be import in 2 ways (named import OR import on window object)
3+
// 1. load every locale individually, it could be imported in 2 ways (named import OR import on window object)
44
import { Spanish } from 'multiple-select-vanilla/dist/locales/es-ES.js'; // named import
55
// import 'multiple-select-vanilla/dist/locales/es-ES'; // locale on window object
66

packages/multiple-select-vanilla/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const ms = multipleSelect('.multiple-select', {
7676
**Migration Example:**
7777

7878
```diff
79-
// 1. load every locale individually, it could be import in 2 ways (named import OR import on window object)
79+
// 1. load every locale individually, it could be imported in 2 ways (named import OR import on window object)
8080
// named import
8181
- import { Spanish } from 'multiple-select-vanilla/dist/locales/multiple-select-es-ES.js';
8282
+ import { Spanish } from 'multiple-select-vanilla/dist/locales/es-ES.js';

0 commit comments

Comments
 (0)