From 6cd3ab0a33c8d95078c4dba64c2e7af727b1cdbf Mon Sep 17 00:00:00 2001
From: Gael Varoquaux <gael.varoquaux@normalesup.org>
Date: Thu, 22 Apr 2010 16:32:14 +0000
Subject: [PATCH] DOC/MISC: correct docstring on digits loading code.

git-svn-id: https://scikit-learn.svn.sourceforge.net/svnroot/scikit-learn/trunk@692 22fbfee3-77ab-4535-9bad-27d1bd3bc7d8
---
 scikits/learn/datasets/base.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scikits/learn/datasets/base.py b/scikits/learn/datasets/base.py
index f1eaa7c8a2..4569d9460c 100644
--- a/scikits/learn/datasets/base.py
+++ b/scikits/learn/datasets/base.py
@@ -4,7 +4,7 @@ Base IO code for all datasets
 
 # Copyright (c) 2007 David Cournapeau <cournape@gmail.com>
 #               2010 Fabian Pedregosa <fabian.pedregosa@inria.fr>
-#
+# License: Simplified BSD
 
 import csv
 import os
@@ -71,7 +71,7 @@ def load_digits():
     -------
     data : Bunch
         Dictionnary-like object, the interesting attributes are:
-        'data', the data to learn, `raw_data`, the images corresponding
+        'data', the data to learn, `images`, the images corresponding
         to each sample, 'target', the classification labels for each
         sample, 'target_names', the meaning of the labels, and 'DESCR', 
         the full description of the dataset.
-- 
GitLab