From 06f6a1cf2915f703ba75d402ef5c78010f6827ad Mon Sep 17 00:00:00 2001 From: Samesh Date: Mon, 12 Aug 2019 21:48:47 +0530 Subject: [PATCH] DOC:Standardize use of "Iterate" and "Iterator" changed `Iterator over` --> `Iterate over` closes #27861 --- pandas/core/frame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 02241eeaae7b2..9752af6eb352f 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -770,7 +770,7 @@ def style(self): _shared_docs[ "items" ] = r""" - Iterator over (column name, Series) pairs. + Iterate over (column name, Series) pairs. Iterates over the DataFrame columns, returning a tuple with the column name and the content as a Series.