Skip to content

Commit ef37f04

Browse files
committed
Sync documentation of main branch
1 parent 2f9267e commit ef37f04

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

_versions/main/guides/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.

_versions/main/guides/dev-ui.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ To use this state in your page:
872872
import { observeState } from 'lit-element-state'; // <1>
873873
import { connectionState } from 'connection-state'; // <2>
874874
875-
export class QwcExtentionPage extends observeState(LitElement) { // <3>
875+
export class QwcExtensionPage extends observeState(LitElement) { // <3>
876876
----
877877
<1> import observeState from the LitState library.
878878
<2> import the state you are interested in, in this case connection state.
@@ -900,7 +900,7 @@ To use this state in your page:
900900
import { observeState } from 'lit-element-state'; // <1>
901901
import { themeState } from 'theme-state'; // <2>
902902
903-
export class QwcExtentionPage extends observeState(LitElement) { // <3>
903+
export class QwcExtensionPage extends observeState(LitElement) { // <3>
904904
----
905905
<1> import observeState from the LitState library.
906906
<2> import the state you are interested in, in this case theme state.
@@ -934,7 +934,7 @@ To use this state in your page:
934934
import { observeState } from 'lit-element-state'; // <1>
935935
import { assistantState } from 'assistant-state'; // <2>
936936
937-
export class QwcExtentionPage extends observeState(LitElement) { // <3>
937+
export class QwcExtensionPage extends observeState(LitElement) { // <3>
938938
----
939939
<1> import observeState from the LitState library.
940940
<2> import the state you are interested in, in this case assistant state.

0 commit comments

Comments
 (0)