Skip to content

Commit d6a2c6f

Browse files
committed
apply newline and markdown link syntax linting
1 parent 60b3d8b commit d6a2c6f

File tree

10 files changed

+18
-23
lines changed

10 files changed

+18
-23
lines changed

guides/release/components/component-basics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ component template:
9292
This allows you to have some logic in your templates, and to nest components
9393
within each other, building up a component _tree_. The component tree in Ember
9494
applications is similar to the DOM tree in the HTML - in fact, you can even
95-
inspect it using the Ember Inspector:
95+
inspect it using the [Ember Inspector](../../ember-inspector/).
9696

97-
[TODO: Screenshot of the Component tree in the Ember Inspector]
97+
<!-- [TODO: Screenshot of the Component tree in the Ember Inspector] -->
9898

9999
Components can also have blocks and children, just like standard HTML elements.
100100
We could update the `HelloButton` component to render its button text from its

guides/release/components/displaying-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,4 @@ The output will be:
9696
<p>Hello Zoey, I'm Tomster!</p>
9797
```
9898

99-
For more detailed information see [Passing arguments and HTML attributes](./passing-arguments-and-html-attributes).
99+
For more detailed information see [Passing arguments and HTML attributes](./passing-arguments-and-html-attributes).
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Coming soon!
1+
Coming soon!

guides/release/deploying/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Coming soon!
1+
Coming soon!

guides/release/state-management/patterns-for-state.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,12 +210,10 @@ Once the data loads, it updates the state, and data flows downward like normal
210210

211211
Background events are similar to data loading. Something is scheduled to happen
212212
in the background, like a `setTimeout` or `setInterval`, a callback scheduled in
213-
the [run loop][2], or connection is opened to something that communicates
213+
the [run loop](../../applications/run-loop/), or connection is opened to something that communicates
214214
directly with the app, like a websocket or a web worker. When these events occur
215215
and update state, they trigger a rerender just like data loading.
216216

217-
[2]:
218-
219217
Background events and data fetching can both trigger actions as well when they
220218
occur in components, in which case they may interact with other components in
221219
the component tree:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Coming soon!
1+
Coming soon!

guides/release/upgrading/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Coming soon!
1+
Coming soon!

guides/release/working-with-javascript/classic-classes.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -156,10 +156,9 @@ Person.create({ name: 'Stefan Penner' }); // Stefan Penner, reporting for duty!
156156

157157
### Methods
158158

159-
Methods are functions that are defined on the class using [object method
160-
syntax][4], and that usable by instances:
161-
162-
[4]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Method_definitions
159+
Methods are functions that are defined on the class using
160+
[object method syntax](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Method_definitions),
161+
and that usable by instances:
163162

164163
```js
165164
const Person = EmberObject.extend({
@@ -532,13 +531,12 @@ In certain cases, you will want to pass arguments to the super method before or
532531
after overriding. This allows the super class method to continue operating as it
533532
normally would.
534533

535-
One common example is when overriding the [`normalizeResponse()`][4] hook in one
536-
of Ember-Data's serializers.
534+
One common example is when overriding the
535+
[`normalizeResponse()`](https://www.emberjs.com/api/ember-data/release/classes/DS.JSONAPISerializer/methods/normalizeResponse?anchor=normalizeResponse)
536+
hook in one of Ember-Data's serializers.
537537

538538
A handy shortcut for this is to use a "spread operator", like `...arguments`:
539539

540-
[4]: https://www.emberjs.com/api/ember-data/release/classes/DS.JSONAPISerializer/methods/normalizeResponse?anchor=normalizeResponse
541-
542540
```javascript
543541
normalizeResponse(store, primaryModelClass, payload, id, requestType) {
544542
// Customize my JSON payload for Ember-Data

guides/release/working-with-javascript/native-classes.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -674,13 +674,12 @@ In certain cases, you will want to pass arguments to the super method before or
674674
after overriding. This allows the super class method to continue operating as it
675675
normally would.
676676

677-
One common example is when overriding the [`normalizeResponse()`][5] hook in one
678-
of Ember Data's serializers.
677+
One common example is when overriding the
678+
[`normalizeResponse()`](https://www.emberjs.com/api/ember-data/release/classes/DS.JSONAPISerializer/methods/normalizeResponse?anchor=normalizeResponse)
679+
hook in one of Ember Data's serializers.
679680

680681
A handy shortcut for this is to use a "spread operator", like `...arguments`:
681682

682-
[5]: https://www.emberjs.com/api/ember-data/release/classes/DS.JSONAPISerializer/methods/normalizeResponse?anchor=normalizeResponse
683-
684683
```javascript
685684
normalizeResponse(store, primaryModelClass, payload, id, requestType) {
686685
// Customize my JSON payload for Ember-Data

guides/v3.7.0/contributing/adding-new-features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,4 +161,4 @@ Every week, we repeat the Go/No-Go process for the features that remain
161161
on the beta branch. Any feature that has become unready is removed from
162162
the `features.json`.
163163

164-
Once this is done, a Beta release is tagged and pushed.
164+
Once this is done, a Beta release is tagged and pushed.

0 commit comments

Comments
 (0)