From ecc8786de5ea802002ac07a243b8e246865a5a90 Mon Sep 17 00:00:00 2001 From: Mitar Date: Mon, 25 Dec 2017 15:50:28 -0800 Subject: [PATCH] Typo in documentation. --- doc/source/internals.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/internals.rst b/doc/source/internals.rst index 3d96b93de4cc9..a321b4202296f 100644 --- a/doc/source/internals.rst +++ b/doc/source/internals.rst @@ -217,7 +217,7 @@ Below is an example to define 2 original properties, "internal_cache" as a tempo .. code-block:: python - >>> df = SubclassedDataFrame2({'A', [1, 2, 3], 'B': [4, 5, 6], 'C': [7, 8, 9]}) + >>> df = SubclassedDataFrame2({'A': [1, 2, 3], 'B': [4, 5, 6], 'C': [7, 8, 9]}) >>> df A B C 0 1 4 7