Skip to content

Commit 9e5a0bb

Browse files
committed
Single quotes
1 parent 35c5b24 commit 9e5a0bb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

markdown/docs/addon-author-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ our component file that's shared across all instances of the component:
9696
```js
9797
// addon/components/resizable-component.js
9898
import Component from '@ember/component';
99-
import $ from "jquery";
99+
import $ from 'jquery';
100100

101101
let componentsToNotify = [];
102102
$(window).on('resize', () => {
@@ -136,7 +136,7 @@ and never in Node).
136136
```js
137137
// addon/components/resizable-component.js
138138
import Component from '@ember/component';
139-
import $ from "jquery";
139+
import $ from 'jquery';
140140

141141
let componentsToNotify = [];
142142
let didSetupListener = false;

0 commit comments

Comments
 (0)