From b5f50149a88db36e38723c19359909c80458bd20 Mon Sep 17 00:00:00 2001 From: Aviroop Sen Date: Tue, 16 Jan 2018 23:29:49 -0800 Subject: [PATCH] DOC: add missing period to DataFrame docstring --- 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 2c05eefa5706e..35cc7a2a34acb 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -250,7 +250,7 @@ class DataFrame(NDFrame): """ Two-dimensional size-mutable, potentially heterogeneous tabular data structure with labeled axes (rows and columns). Arithmetic operations align on both row and column labels. Can be thought of as a dict-like - container for Series objects. The primary pandas data structure + container for Series objects. The primary pandas data structure. Parameters ----------