From 0c84aea1d4f8affba76eac529a3d7d15f7b04c91 Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Thu, 9 May 2024 10:51:04 -0700 Subject: [PATCH] docs: spell correction (#21459) --- docs/docs/expression_language/how_to/decorator.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/expression_language/how_to/decorator.ipynb b/docs/docs/expression_language/how_to/decorator.ipynb index eccbfd708d483c..ffb79d34b6f87e 100644 --- a/docs/docs/expression_language/how_to/decorator.ipynb +++ b/docs/docs/expression_language/how_to/decorator.ipynb @@ -7,9 +7,9 @@ "source": [ "# Create a runnable with the @chain decorator\n", "\n", - "You can also turn an arbitrary function into a chain by adding a `@chain` decorator. This is functionaly equivalent to wrapping in a [`RunnableLambda`](/docs/expression_language/primitives/functions).\n", + "You can also turn an arbitrary function into a chain by adding a `@chain` decorator. This is functionally equivalent to wrapping in a [`RunnableLambda`](/docs/expression_language/primitives/functions).\n", "\n", - "This will have the benefit of improved observability by tracing your chain correctly. Any calls to runnables inside this function will be traced as nested childen.\n", + "This will have the benefit of improved observability by tracing your chain correctly. Any calls to runnables inside this function will be traced as nested children.\n", "\n", "It will also allow you to use this as any other runnable, compose it in chain, etc.\n", "\n",