diff --git a/README.md b/README.md index 80067d1f..f33957a6 100644 --- a/README.md +++ b/README.md @@ -61,9 +61,9 @@ and renders declaratively using `lit-html`. describing dynamic parts with standard JavaScript template expressions: * static elements: ``` html`
Hi
` ``` - * expression: ``` html`
${disabled ? 'Off' : 'On'}
` ``` - * property: ``` html`` ``` - * attribute: ``` html`
` ``` + * expression: ``` html`
${this.disabled ? 'Off' : 'On'}
` ``` + * property: ``` html`` ``` + * attribute: ``` html`
` ``` * event handler: ``` html`` ``` ## Getting started