From 618805fc614083fad05db71a38a195a0810fcfd9 Mon Sep 17 00:00:00 2001 From: NicolasMontone Date: Tue, 21 Jun 2022 18:40:42 -0300 Subject: [PATCH 1/2] docs(parent-props): fix typo. --- docs/api/parent-props.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/parent-props.md b/docs/api/parent-props.md index 12b6874c..9c5b9010 100644 --- a/docs/api/parent-props.md +++ b/docs/api/parent-props.md @@ -29,7 +29,7 @@ MyComponent({ ## cspNonce `string` -A CSP nonce that will be passed to any inline `script` or `style` tags rendered by zoid in the default `containerTemplate` or `prerenderTemplate` fumctions. +A CSP nonce that will be passed to any inline `script` or `style` tags rendered by zoid in the default `containerTemplate` or `prerenderTemplate` functions. ```javascript MyComponent({ From 9467a2d6c0b34391fdaae116087b08b8dcf4ceed Mon Sep 17 00:00:00 2001 From: NicolasMontone Date: Tue, 21 Jun 2022 18:41:04 -0300 Subject: [PATCH 2/2] docs(xprops): fix typo. --- docs/api/xprops.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/xprops.md b/docs/api/xprops.md index 4bf5e7b8..dd575acb 100644 --- a/docs/api/xprops.md +++ b/docs/api/xprops.md @@ -148,7 +148,7 @@ In the child window: console.log('The current color is', window.xprops.color); // red window.xprops.onProps(() => { - console.log('The current color is', window.xprops.color); // lue + console.log('The current color is', window.xprops.color); // blue }); ```