From 7acb9f9efb89a3834e6f9476d209665b535cdb5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Sun, 26 Aug 2012 00:27:55 +0200 Subject: [PATCH] Fix short description in doc string --- skimage/data/__init__.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/skimage/data/__init__.py b/skimage/data/__init__.py index 7e351293..5e51d353 100644 --- a/skimage/data/__init__.py +++ b/skimage/data/__init__.py @@ -29,8 +29,9 @@ def load(f): def camera(): - """Gray-level "camera" image, often used for segmentation - and denoising examples. + """Gray-level "camera" image. + + Often used for segmentation and denoising examples. """ return load("camera.png") @@ -49,7 +50,7 @@ def lena(): def text(): - """ Gray-level "text" image used for corner detection. + """Gray-level "text" image used for corner detection. Notes -----