Skip to content

Commit c7faf7f

Browse files
authored
Merge pull request ember-learn#617 from efx/fix-double-semi
[OCTANE] remove double semi, other semi colon
2 parents bf919cd + 8279cbc commit c7faf7f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

guides/release/testing/testing-components.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ export default class CommentFormComponent extends Component {
225225

226226
@action
227227
submitComment() {
228-
this.args.submitComment({ comment: this.comment });;
228+
this.args.submitComment({ comment: this.comment });
229229
}
230230
}
231231
```
@@ -298,7 +298,7 @@ export default class LocationIndicatorComponent extends Component {
298298
get country() {
299299
return this.location.getCurrentCountry();
300300
}
301-
};
301+
}
302302
```
303303

304304
```handlebars {data-filename="app/templates/components/location-indicator.hbs"}
@@ -468,7 +468,7 @@ import { action } from '@ember/object';
468468
import { debounce } from '@ember/runloop';
469469

470470
export default class DelayedTypeaheadComponent extends Component {
471-
@action
471+
@action
472472
handleTyping() {
473473
//the fetchResults function is passed into the component from its parent
474474
debounce(this, this.fetchResults, this.searchValue, 250);

0 commit comments

Comments
 (0)