Skip to content

Commit dde502d

Browse files
authored
fix typo petitle-vue-i18n (#848)
1 parent 40a86e6 commit dde502d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/petite-vue-i18n/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ Small size subset of Vue I18n
3737

3838
`vue-i18n` includes various i18n features such as translation, datetimes format and number formats. Some projects may only use translation and not datetime formats. At the moment, even in that case, the code for that feature is included.
3939

40-
If your project only uses `t` or `$t` API for translation, so we recommended you would use `petite-vue-i18n` better than `vue-i18n`. And your project needs the features of `vue-i18n`, you can smoothly migrate from `petitle-vue-i18n` to `vue-i18n`. This means that it’s progressive enhancement.
40+
If your project only uses `t` or `$t` API for translation, so we recommended you would use `petite-vue-i18n` better than `vue-i18n`. And your project needs the features of `vue-i18n`, you can smoothly migrate from `petite-vue-i18n` to `vue-i18n`. This means that it’s progressive enhancement.
4141

4242
## :warning: About the supporting of `petite-vue-i18n`
4343

44-
Note that `petitle-vue-i18n` is still experimental, and you may encounter bugs and unsupported use cases. Proceed at your own risk.
44+
Note that `petite-vue-i18n` is still experimental, and you may encounter bugs and unsupported use cases. Proceed at your own risk.
4545

46-
However, please don’t worry about it. Depending on the usage of `petitle-vue-i18n` and the feedback, we would like to use it refer to the development of the next version of `vue-i18n`. This means we will to maintain it.
46+
However, please don’t worry about it. Depending on the usage of `petite-vue-i18n` and the feedback, we would like to use it refer to the development of the next version of `vue-i18n`. This means we will to maintain it.
4747

4848
We welcome your feedback on `petite-vue-i18n`.
4949

@@ -124,7 +124,7 @@ const { createApp } = Vue
124124
const { createI18n, useI18n } = PetiteVueI18n
125125
// or for ES modules
126126
// import { createApp } from 'vue'
127-
// import { createI18n } from 'petitle-vue-i18n'
127+
// import { createI18n } from 'petite-vue-i18n'
128128

129129
const i18n = createI18n({
130130
locale: 'en',
@@ -180,7 +180,7 @@ Then, at the entry point of the application, configure the message resolver and
180180

181181
```js
182182
import { createApp } from 'vue'
183-
import { createI18n } from 'petitle-vue-i18n'
183+
import { createI18n } from 'petite-vue-i18n'
184184
import {
185185
registerMessageResolver, // register the message resolver API
186186
resolveValue, // message resolver of vue-i18n which is used by default

0 commit comments

Comments
 (0)