From 66385a86ce26193d203f2e97192602b2d808876c Mon Sep 17 00:00:00 2001 From: lexual Date: Tue, 12 Feb 2013 21:34:25 +1100 Subject: [PATCH 1/2] Typo fix: propgate -> propagate. --- doc/source/dsintro.rst | 2 +- doc/source/v0.11.0.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/dsintro.rst b/doc/source/dsintro.rst index ddf8c678b766a..fa0c18c1f2fca 100644 --- a/doc/source/dsintro.rst +++ b/doc/source/dsintro.rst @@ -483,7 +483,7 @@ each type: df.get_dtype_counts() -Numeric dtypes will propgate and can coexist in DataFrames (starting in v0.10.2). +Numeric dtypes will propagate and can coexist in DataFrames (starting in v0.10.2). If a dtype is passed (either directly via the ``dtype`` keyword, a passed ``ndarray``, or a passed ``Series``, then it will be preserved in DataFrame operations. Furthermore, different numeric dtypes will **NOT** be combined. The following example will give you a taste. diff --git a/doc/source/v0.11.0.txt b/doc/source/v0.11.0.txt index 5254f0e1d6c93..d2648cbdb5a44 100644 --- a/doc/source/v0.11.0.txt +++ b/doc/source/v0.11.0.txt @@ -11,7 +11,7 @@ to. API changes ~~~~~~~~~~~ -Numeric dtypes will propgate and can coexist in DataFrames. If a dtype is passed (either directly via the ``dtype`` keyword, a passed ``ndarray``, or a passed ``Series``, then it will be preserved in DataFrame operations. Furthermore, different numeric dtypes will **NOT** be combined. The following example will give you a taste. +Numeric dtypes will propagate and can coexist in DataFrames. If a dtype is passed (either directly via the ``dtype`` keyword, a passed ``ndarray``, or a passed ``Series``, then it will be preserved in DataFrame operations. Furthermore, different numeric dtypes will **NOT** be combined. The following example will give you a taste. **Dtype Specification** From 891047b31f5db768e8536c73aaf0aaed465f95cc Mon Sep 17 00:00:00 2001 From: lexual Date: Wed, 13 Feb 2013 00:24:24 +1100 Subject: [PATCH 2/2] docs refernce 0.10.2 -> 0.11.0 --- doc/source/dsintro.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/dsintro.rst b/doc/source/dsintro.rst index fa0c18c1f2fca..1ce40ea74a6bb 100644 --- a/doc/source/dsintro.rst +++ b/doc/source/dsintro.rst @@ -483,7 +483,7 @@ each type: df.get_dtype_counts() -Numeric dtypes will propagate and can coexist in DataFrames (starting in v0.10.2). +Numeric dtypes will propagate and can coexist in DataFrames (starting in v0.11.0). If a dtype is passed (either directly via the ``dtype`` keyword, a passed ``ndarray``, or a passed ``Series``, then it will be preserved in DataFrame operations. Furthermore, different numeric dtypes will **NOT** be combined. The following example will give you a taste.