Skip to content

Commit 41bd12b

Browse files
committed
fix node tests
1 parent a406109 commit 41bd12b

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

guides/release/components/template-tag-format.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Just like with separate JavaScript and Glimmer template files, the template tag
1212

1313
### Template-only components
1414

15-
The following template-only component was created in a [previous section](../component-arguments-and-html-attributes) to extract an avatar layout into a reusable component.
15+
The following template-only component was created in a [previous section](../component-arguments-and-html-attributes/) to extract an avatar layout into a reusable component.
1616

1717
```handlebars {data-filename="app/components/avatar.hbs"}
1818
<aside>
@@ -62,11 +62,8 @@ export default class Avatar extends Component {
6262

6363
## Importing components, helpers, and modifiers
6464

65-
In Ember templates, **“invokables”** are things you can *invoke* in a template. These include [components][], [helpers][], and [modifiers][]. In the template tag format, these invokables need to be imported before they can be used. This makes it easier to understand where values come from and what they do, as well as unlocks build optimizations.
65+
In Ember templates, **“invokables”** are things you can *invoke* in a template. These include [components](./introducing-components/), [helpers](./helper-functions/), and [modifiers](./template-lifecycle-dom-and-modifiers/). In the template tag format, these invokables need to be imported before they can be used. This makes it easier to understand where values come from and what they do, as well as unlocks build optimizations.
6666

67-
[components]: ../../../components/introducing-components/
68-
[helpers]: ../../../components/helper-functions/
69-
[modifiers]: ../../../components/template-lifecycle-dom-and-modifiers/
7067

7168
### Importing invokables from your own app
7269

0 commit comments

Comments
 (0)