Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
vlajos authored and Atinux committed Sep 29, 2018
1 parent 0c1d94a commit 74eb5a6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/custom-layouts/layouts/error.vue
@@ -1,7 +1,7 @@
<template>
<div class="container">
<h1 v-if="error.statusCode === 404">Page not found</h1>
<h1 v-else>An error occured</h1>
<h1 v-else>An error occurred</h1>
<nuxt-link to="/">Home page</nuxt-link>
</div>
</template>
Expand Down
2 changes: 1 addition & 1 deletion examples/dynamic-layouts/layouts/error.vue
@@ -1,7 +1,7 @@
<template>
<div class="container">
<h1 v-if="error.statusCode === 404">Page not found</h1>
<h1 v-else>An error occured</h1>
<h1 v-else>An error occurred</h1>
<nuxt-link to="/">Home page</nuxt-link>
</div>
</template>
Expand Down
2 changes: 1 addition & 1 deletion examples/typescript/store/modules/people.ts
Expand Up @@ -29,7 +29,7 @@ export interface Person {
gender: string
ip_address: string
avatar: string
addres: PersonAddress
address: PersonAddress
}

export interface State {
Expand Down
4 changes: 2 additions & 2 deletions examples/web-worker/pages/index.vue
Expand Up @@ -82,7 +82,7 @@ export default {
if (worker) worker.postMessage({ hello: 'world' })
else this.notification = 'No more test workers available'
},
long (miliseconds) {
long (milliseconds) {
let worker = this.workers.shift()
if (worker) {
Expand All @@ -96,7 +96,7 @@ export default {
worker = this.longRunningWorkers[ this.longIndex++ % this.longRunningWorkers.length]
}
worker.postMessage({ action: 'expensive', time: miliseconds })
worker.postMessage({ action: 'expensive', time: milliseconds })
},
freeWorker () {
// we can't really free a worker, we can only terminate it and create a new
Expand Down
2 changes: 1 addition & 1 deletion lib/app/client.js
Expand Up @@ -665,7 +665,7 @@ async function mountApp(__app) {
if (!path) {
normalizeComponents(router.currentRoute, router.currentRoute)
showNextPage.call(_app, router.currentRoute)
// Dont call fixPrepatch.call(_app, router.currentRoute, router.currentRoute) since it's first render
// Don't call fixPrepatch.call(_app, router.currentRoute, router.currentRoute) since it's first render
mount()
return
}
Expand Down

0 comments on commit 74eb5a6

Please sign in to comment.