From 2fe28584d75f9f740ec7a6d162b8d775c9cf39a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Montone?= <83733486+NicolasMontone@users.noreply.github.com> Date: Wed, 22 Jun 2022 12:28:46 -0300 Subject: [PATCH] docs: fix typos in parent-props and xprops docs (#408) * docs(parent-props): fix typo * docs(xprops): fix typo --- docs/api/parent-props.md | 2 +- docs/api/xprops.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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({ 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 }); ```