Skip to content

Commit 8d183ae

Browse files
luk82atscott
authored andcommitted
docs: Fix Property Binding (angular#60725)
PR Close angular#60725
1 parent 5b76da5 commit 8d183ae

File tree

1 file changed

+1
-1
lines changed
  • adev/src/content/tutorials/learn-angular/steps/6-property-binding

1 file changed

+1
-1
lines changed

adev/src/content/tutorials/learn-angular/steps/6-property-binding/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Next, bind the `contentEditable` attribute of the `div` to the `isEditable` prop
3434
<docs-code highlight="[3]" language="angular-ts">
3535
@Component({
3636
...
37-
template: `<div [contentEditable]="{{isEditable}}"></div>`,
37+
template: `<div [contentEditable]="isEditable"></div>`,
3838
})
3939
</docs-code>
4040
</docs-step>

0 commit comments

Comments
 (0)