Skip to content

Commit 364b8aa

Browse files
brandon93ssdras
authored andcommitted
Fix typos (vuejs#1547)
1 parent b722457 commit 364b8aa

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/v2/cookbook/using-axios-to-consume-apis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ You can hit the rerun button on this pen to see the loading status briefly while
157157
<p data-height="300" data-theme-id="32763" data-slug-hash="6c01922c9af3883890fd7393e8147ec4" data-default-tab="result" data-user="Vue" data-embed-version="2" data-pen-title="Fourth Step Axios and Vue" class="codepen">See the Pen <a href="https://codepen.io/team/Vue/pen/6c01922c9af3883890fd7393e8147ec4/">Fourth Step Axios and Vue</a> by Vue (<a href="https://codepen.io/Vue">@Vue</a>) on <a href="https://codepen.io">CodePen</a>.</p>
158158
<script async src="https://static.codepen.io/assets/embed/ei.js"></script>
159159

160-
This can be even futher improved with the use of components for different sections and more distinct error reporting, depending on the API you're using and the complexity of your application.
160+
This can be even further improved with the use of components for different sections and more distinct error reporting, depending on the API you're using and the complexity of your application.
161161

162162
## Alternative Patterns
163163

src/v2/guide/components-registration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ If you're not using a module system with `import`/`require`, you can probably sk
135135

136136
If you're still here, then it's likely you're using a module system, such as with Babel and Webpack. In these cases, we recommend creating a `components`, with each component in its own file.
137137

138-
Then you'll need to import each component you'd like to use, before you locally register it. For example, in a hypothetical `CompononentB.js` or `ComponentB.vue` file:
138+
Then you'll need to import each component you'd like to use, before you locally register it. For example, in a hypothetical `ComponentB.js` or `ComponentB.vue` file:
139139

140140
```js
141141
import ComponentA from './ComponentA'

themes/vue/source/js/common.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -520,9 +520,9 @@
520520
.replace(rControl, '')
521521
// Replace special characters
522522
.replace(rSpecial, separator)
523-
// Remove continous separators
523+
// Remove continuous separators
524524
.replace(new RegExp(escapedSep + '{2,}', 'g'), separator)
525-
// Remove prefixing and trailing separtors
525+
// Remove prefixing and trailing separators
526526
.replace(new RegExp('^' + escapedSep + '+|' + escapedSep + '+$', 'g'), '')
527527

528528
switch (options.transform) {

0 commit comments

Comments
 (0)