From 9f5fa50bbf376aabb6f81889d285ebf4215e6672 Mon Sep 17 00:00:00 2001 From: Zapiron <125368863+DangerousPotential@users.noreply.github.com> Date: Wed, 8 Jan 2025 23:11:30 +0800 Subject: [PATCH] docs: Remove additional ` in heading (#29096) Remove the additional ` in the pipe operator heading --- docs/docs/concepts/lcel.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/concepts/lcel.mdx b/docs/docs/concepts/lcel.mdx index da45da268b3..d7701c0ad51 100644 --- a/docs/docs/concepts/lcel.mdx +++ b/docs/docs/concepts/lcel.mdx @@ -140,7 +140,7 @@ is Equivalent to: chain = RunnableSequence([runnable1, runnable2]) ``` -### The `.pipe` method` +### The `.pipe` method If you have moral qualms with operator overloading, you can use the `.pipe` method instead. This is equivalent to the `|` operator.