From bb55cbe2845e2fd312490a8727a71bca370fac29 Mon Sep 17 00:00:00 2001 From: Adam Pugh Date: Mon, 27 Jan 2025 15:17:30 -0600 Subject: [PATCH] Update nodes.md 1 update to grammar --- packages/lexical-website/docs/concepts/nodes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/lexical-website/docs/concepts/nodes.md b/packages/lexical-website/docs/concepts/nodes.md index 99526c6d082..2e2c4e893fe 100644 --- a/packages/lexical-website/docs/concepts/nodes.md +++ b/packages/lexical-website/docs/concepts/nodes.md @@ -193,7 +193,7 @@ export class CustomParagraph extends ElementNode { It's also good etiquette to provide some `$` prefixed utility functions for your custom `ElementNode` so that others can easily consume and validate nodes -are that of your custom node. Here's how you might do this for the above example: +that are of your custom node. Here's how you might do this for the above example: ```js export function $createCustomParagraphNode(): CustomParagraph {