From 1bae431545a15690123c2bf04d37567b9c178ec1 Mon Sep 17 00:00:00 2001
From: Andreas Mueller <amueller@ais.uni-bonn.de>
Date: Sun, 13 Nov 2011 11:24:23 +0100
Subject: [PATCH] DOC fixed whitespace in GridSearchCV doc string so that html
 doc is generated correctly.

---
 sklearn/grid_search.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/sklearn/grid_search.py b/sklearn/grid_search.py
index 67325e76df..5caf3debd9 100644
--- a/sklearn/grid_search.py
+++ b/sklearn/grid_search.py
@@ -212,12 +212,13 @@ class GridSearchCV(BaseEstimator):
     `grid_scores_` : dict of any to float
         Contains scores for all parameter combinations in param_grid.
 
-     `best_estimator` : estimator
+    `best_estimator` : estimator
         Estimator that was choosen by grid search, i.e. estimator
         which gave highest score (or smallest loss if specified)
         on the left out data.
 
-     `best_score` : score of best_estimator on the left out data.
+    `best_score` : float
+        score of best_estimator on the left out data.
 
 
     Notes
-- 
GitLab