From ef3b89cd90834643878e4301731eded83e9666db Mon Sep 17 00:00:00 2001 From: Fredrik Erlandsson Date: Mon, 10 Oct 2022 09:31:10 +0200 Subject: [PATCH] Clarify pipe documentation --- pandas/core/generic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/generic.py b/pandas/core/generic.py index 3df5d2aaf9896..3149cbb87c16e 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -5878,7 +5878,7 @@ def pipe( If you have a function that takes the data as (say) the second argument, pass a tuple indicating which keyword expects the - data. For example, suppose ``f`` takes its data as ``arg2``: + data. For example, suppose ``func`` takes its data as ``arg2``: >>> (df.pipe(h) ... .pipe(g, arg1=a)