Skip to content

Commit 2ba32b5

Browse files
committed
Fix typo
1 parent 72749e7 commit 2ba32b5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/src/main/asciidoc/assistant.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ To use this state in your page:
257257
import { observeState } from 'lit-element-state'; // <1>
258258
import { assistantState } from 'assistant-state'; // <2>
259259
260-
export class QwcExtentionPage extends observeState(LitElement) { // <3>
260+
export class QwcExtensionPage extends observeState(LitElement) { // <3>
261261
----
262262
<1> import observeState from the LitState library.
263263
<2> import the state you are interested in, in this case assistant state.

docs/src/main/asciidoc/dev-ui.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ To use this state in your page:
728728
import { observeState } from 'lit-element-state'; // <1>
729729
import { connectionState } from 'connection-state'; // <2>
730730
731-
export class QwcExtentionPage extends observeState(LitElement) { // <3>
731+
export class QwcExtensionPage extends observeState(LitElement) { // <3>
732732
----
733733
<1> import observeState from the LitState library.
734734
<2> import the state you are interested in, in this case connection state.
@@ -756,7 +756,7 @@ To use this state in your page:
756756
import { observeState } from 'lit-element-state'; // <1>
757757
import { themeState } from 'theme-state'; // <2>
758758
759-
export class QwcExtentionPage extends observeState(LitElement) { // <3>
759+
export class QwcExtensionPage extends observeState(LitElement) { // <3>
760760
----
761761
<1> import observeState from the LitState library.
762762
<2> import the state you are interested in, in this case theme state.
@@ -790,7 +790,7 @@ To use this state in your page:
790790
import { observeState } from 'lit-element-state'; // <1>
791791
import { assistantState } from 'assistant-state'; // <2>
792792
793-
export class QwcExtentionPage extends observeState(LitElement) { // <3>
793+
export class QwcExtensionPage extends observeState(LitElement) { // <3>
794794
----
795795
<1> import observeState from the LitState library.
796796
<2> import the state you are interested in, in this case assistant state.

0 commit comments

Comments
 (0)