From 103f48bc0091d969ce209e14a56e6b21dddb00c7 Mon Sep 17 00:00:00 2001 From: Vighnesh Birodkar Date: Mon, 18 Aug 2014 19:58:02 +0530 Subject: [PATCH] Spelling error --- skimage/graph/graph_cut.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skimage/graph/graph_cut.py b/skimage/graph/graph_cut.py index 284b3c61..d7710f0b 100644 --- a/skimage/graph/graph_cut.py +++ b/skimage/graph/graph_cut.py @@ -95,9 +95,9 @@ def cut_normalized(labels, rag, thresh=0.001, num_cuts=10, in_place=True, in_place : bool If set, modifies `rag` in place. For each node `n` the function will set a new attribute ``rag.node[n]['ncut label']``. - max_egde : float, optinal + max_edge : float, optional The maximum possible value of an edge in the RAG. This corresponds to - an edge between regions which are identical. This is used to put self + an edge between identical regions. This is used to put self edges in the RAG. Returns