Skip to content

Commit

Permalink
👕 rafactor(gitbook): change to single qutations [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
kazupon committed Aug 28, 2016
1 parent e7c3d23 commit 3f53617
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gitbook/component.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Template the following:

```html
<div id="app">
<p>{{ $t("message.hello") }}</p>
<p>{{ $t('message.hello') }}</p>
<component1></component1>
</div>
```
Expand Down
6 changes: 3 additions & 3 deletions gitbook/formatting.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ var locales = {
Template the following:

```html
<p>{{ $t('message.hello', { msg: "hello"}) }}</p>
<p>{{ $t('message.hello', { msg: 'hello' }) }}</p>
```

Output the following:
Expand All @@ -70,7 +70,7 @@ var locales = {
Template the following:

```html
<p>{{ $t('message.hello', ["hello"]) }}</p>
<p>{{ $t('message.hello', ['hello']) }}</p>
```

Output the following:
Expand All @@ -96,7 +96,7 @@ var locales = {
Template the following:

```html
<p>{{ $t('message.hello', { msg: "hello"}) }}</p>
<p>{{ $t('message.hello', { msg: 'hello' }) }}</p>
```

Output the following:
Expand Down

0 comments on commit 3f53617

Please sign in to comment.