Skip to content

Commit c281bb8

Browse files
authored
Remove duplicate words in Global API Treeshaking (#501)
1 parent 8c7a5e2 commit c281bb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/guide/migration/global-api-treeshaking.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ If you’ve ever had to manually manipulate DOM in Vue, you might have come acro
1313
import Vue from 'vue'
1414

1515
Vue.nextTick(() => {
16-
// something something DOM-related
16+
// something DOM-related
1717
})
1818
```
1919

@@ -48,7 +48,7 @@ In Vue 3, the global and internal APIs have been restructured with tree-shaking
4848
import { nextTick } from 'vue'
4949

5050
nextTick(() => {
51-
// something something DOM-related
51+
// something DOM-related
5252
})
5353
```
5454

0 commit comments

Comments
 (0)