Skip to content

Commit

Permalink
[DOC] Fix typo in glimmer component docs
Browse files Browse the repository at this point in the history
(cherry picked from commit 499bd12)
  • Loading branch information
bertdeblock authored and rwjblue committed Mar 8, 2021
1 parent 93f1e76 commit 66c6310
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
```handlebars
<PersonProfile @person={{this.currentUser}}>
<:title>{{this.currentUser.name}}</:title>
<:default>{{this.currentUser.siganture}}</:default>
<:default>{{this.currentUser.signature}}</:default>
</PersonProfile>
```
Expand All @@ -172,7 +172,7 @@
```handlebars
<PersonProfile @person={{this.currentUser}}>
<:title as |name|>{{name}}</:title>
<:default as |signature|>{{siganture}}</:default>
<:default as |signature|>{{signature}}</:default>
</PersonProfile>
```
Expand Down Expand Up @@ -204,7 +204,7 @@
{{! passing both blocks }}
<PersonProfile @person={{this.currentUser}}>
<:title as |name|>{{name}}</:title>
<:default as |signature|>{{siganture}}</:default>
<:default as |signature|>{{signature}}</:default>
</PersonProfile>
{{! passing just the title block }}
Expand Down

0 comments on commit 66c6310

Please sign in to comment.