diff --git a/content/src/content/docs/docs/getting-started/building-pipelines.mdx b/content/src/content/docs/docs/getting-started/building-pipelines.mdx index eb46aa89e..6a096f427 100644 --- a/content/src/content/docs/docs/getting-started/building-pipelines.mdx +++ b/content/src/content/docs/docs/getting-started/building-pipelines.mdx @@ -90,6 +90,8 @@ In the above example, we start with an input value of `5`. The `increment` funct The result is equivalent to `subtractTen(double(increment(5)))`, but using `pipe` makes the code more readable because the operations are sequenced from left to right, rather than nesting them inside out. +Please note that pipe currently support up to 20 functions + ## map Transforms the value inside an effect by applying a function to it.