From 52b5383b09f2b3b2bb722627d1d9ce82985da261 Mon Sep 17 00:00:00 2001 From: Tony S Yu Date: Sun, 2 Sep 2012 18:50:16 -0400 Subject: [PATCH] DOC: Fix rendering bug. ``**`` is interpreted by Sphinx as the start of bold text. Wrap in backticks to prevent misinterpretation. --- skimage/transform/_geometric.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/transform/_geometric.py b/skimage/transform/_geometric.py index 3e469ba7..0f76b50e 100644 --- a/skimage/transform/_geometric.py +++ b/skimage/transform/_geometric.py @@ -787,7 +787,7 @@ def warp(image, inverse_map=None, map_args={}, output_shape=None, order=1, ---------- image : 2-D array Input image. - inverse_map : transformation object, callable xy = f(xy, **kwargs) + inverse_map : transformation object, callable ``xy = f(xy, **kwargs)`` Inverse coordinate map. A function that transforms a (N, 2) array of ``(x, y)`` coordinates in the *output image* into their corresponding coordinates in the *source image* (e.g. a transformation object or its