From 3065b17352c418dffe48c3d4a80bac8d4d3e1d42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yoshiki=20V=C3=A1zquez=20Baeza?= Date: Mon, 18 May 2015 12:39:31 -0700 Subject: [PATCH] DOC: Reorder arguments in shared fillna docstring The docstring listed 'method' before 'value' which is not consistent with the order of the arguments when calling the method. --- pandas/core/generic.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pandas/core/generic.py b/pandas/core/generic.py index a560dd4c00be7..b747f0a2ceacb 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -2398,15 +2398,15 @@ def convert_objects(self, convert_dates=True, convert_numeric=False, Parameters ---------- - method : {'backfill', 'bfill', 'pad', 'ffill', None}, default None - Method to use for filling holes in reindexed Series - pad / ffill: propagate last valid observation forward to next valid - backfill / bfill: use NEXT valid observation to fill gap value : scalar, dict, Series, or DataFrame Value to use to fill holes (e.g. 0), alternately a dict/Series/DataFrame of values specifying which value to use for each index (for a Series) or column (for a DataFrame). (values not in the dict/Series/DataFrame will not be filled). This value cannot be a list. + method : {'backfill', 'bfill', 'pad', 'ffill', None}, default None + Method to use for filling holes in reindexed Series + pad / ffill: propagate last valid observation forward to next valid + backfill / bfill: use NEXT valid observation to fill gap axis : %(axes_single_arg)s inplace : boolean, default False If True, fill in place. Note: this will modify any