From 012f8b4ea112b6d08061044118995e5baaf642b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Thu, 25 Jul 2013 22:36:41 +0200 Subject: [PATCH] Add missing space in parameter defintion in doc string --- skimage/filter/_denoise_cy.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skimage/filter/_denoise_cy.pyx b/skimage/filter/_denoise_cy.pyx index b4d9b1d3..3459171c 100644 --- a/skimage/filter/_denoise_cy.pyx +++ b/skimage/filter/_denoise_cy.pyx @@ -223,9 +223,9 @@ def denoise_tv_bregman(image, double weight, int max_iter=100, double eps=1e-3, SUM((u(n) - u(n-1))**2) < eps - max_iter: int, optional + max_iter : int, optional Maximal number of iterations used for the optimization. - isotropic: boolean, optional + isotropic : boolean, optional Switch between isotropic and anisotropic TV denoising. Returns