Skip to content

Commit a8eae9b

Browse files
authored
Fix missing curly braces and file path
1 parent 66463f2 commit a8eae9b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

guides/release/templates/handlebars-basics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ the block shows up when the page is rendered -->
168168

169169
Lastly, it's important to know that arguments can be passed from one Component to another through templates:
170170

171-
```handlebars {data-filename=app/templates/some-other-component.hbs}
172-
<MyComponent @favoriteFramework=this.favoriteFramework />
171+
```handlebars {data-filename=app/templates/components/some-other-component.hbs}
172+
<MyComponent @favoriteFramework={{this.favoriteFramework}} />
173173
```
174174

175175
To pass in arguments associated with a Route, define the property from within a Controller. Learn more about passing data between templates [here](../../components/passing-properties-to-a-component).

0 commit comments

Comments
 (0)