summaryrefslogtreecommitdiff
path: root/src/cython
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-06-06 15:05:05 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-06-06 15:05:05 +0200
commit03b8ed6090acbebca633440896958626e4eb4080 (patch)
treeb1b18eeb3c6bdd358b84134cd9c8916e725b86bb /src/cython
parent90198a22800834acd333f9b8360221035f6862cf (diff)
Fix sphinx test
Diffstat (limited to 'src/cython')
-rw-r--r--src/cython/doc/bottleneck_distance_user.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cython/doc/bottleneck_distance_user.rst b/src/cython/doc/bottleneck_distance_user.rst
index 96e881c8..a6a4426f 100644
--- a/src/cython/doc/bottleneck_distance_user.rst
+++ b/src/cython/doc/bottleneck_distance_user.rst
@@ -22,7 +22,7 @@ Bottleneck distance does not use Euclidean distance, like explained in the follo
import gudhi
- message = "Bottleneck distance = " + '%.2f' % gudhi.bottleneck_distance([0., 0.], [0., 13.])
+ message = "Bottleneck distance = " + '%.1f' % gudhi.bottleneck_distance([[0., 0.]], [[0., 13.]])
print(message)
.. testoutput::