From 54530d16f6740bc486d288799ef1902803e098a8 Mon Sep 17 00:00:00 2001 From: Juan Nunez-Iglesias Date: Sun, 22 Sep 2013 13:37:04 +1000 Subject: [PATCH] Update snippets in notes to use double backticks --- skimage/segmentation/_join.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skimage/segmentation/_join.py b/skimage/segmentation/_join.py index 4afc3a66..b726c81e 100644 --- a/skimage/segmentation/_join.py +++ b/skimage/segmentation/_join.py @@ -72,8 +72,8 @@ def relabel_from_one(label_field): ----- The forward map can be extremely big for some inputs, since its length is given by the maximum of the label field. However, in most - situations, `label_field.max()` is much smaller than - `label_field.size`, and in these cases the forward map is + situations, ``label_field.max()`` is much smaller than + ``label_field.size``, and in these cases the forward map is guaranteed to be smaller than either the input or output images. Examples