Skip to content

Commit

Permalink
Merge pull request #38 from jeliasson/patch-1
Browse files Browse the repository at this point in the history
Missing comma and semi colons
  • Loading branch information
danielcherubini committed Feb 26, 2017
2 parents 949edba + b75e9d2 commit 92203bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ router.get('/', (req, res, next) => {
meta: {
title: 'Page Title',
head: [
{ property:'og:title' content: 'Page Title'},
{ name:'twitter:title' content: 'Page Title'},
{ property:'og:title', content: 'Page Title'},
{ name:'twitter:title', content: 'Page Title'},
]
}
}
Expand Down Expand Up @@ -125,7 +125,7 @@ You can now use Mixins, lets say you have an file called `exampleMixin.js` and i
export default {
methods: {
hello: function () {
console.log('Hello')
console.log('Hello');
}
}
}
Expand Down

0 comments on commit 92203bc

Please sign in to comment.