From 0d24492150205f5e5726d81eebd5a584fecae679 Mon Sep 17 00:00:00 2001 From: Franz Srambical <79149449+emergenz@users.noreply.github.com> Date: Mon, 12 Dec 2022 13:23:20 +0100 Subject: [PATCH] fix typo --- doc/src/manual/functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/manual/functions.md b/doc/src/manual/functions.md index 056dfb79ae911..7b430fa513002 100644 --- a/doc/src/manual/functions.md +++ b/doc/src/manual/functions.md @@ -1028,7 +1028,7 @@ julia> ["a", "list", "of", "strings"] .|> [uppercase, reverse, titlecase, length 7 ``` -When combining pipes with anonymous functions, parentheses must be used if subsequent pipes are not to parsed as part of the anonymous function's body. Compare: +When combining pipes with anonymous functions, parentheses must be used if subsequent pipes are not to be parsed as part of the anonymous function's body. Compare: ```jldoctest julia> 1:3 .|> (x -> x^2) |> sum |> sqrt