diff --git a/doc/guide.rst b/doc/guide.rst index 2409d1049c29b0f837bbf91775d2f552a4ae8d77..950d43ba8d68c7ae7ea64596f247942d68a0e5a5 100644 --- a/doc/guide.rst +++ b/doc/guide.rst @@ -66,7 +66,7 @@ The code below shall detect most frontal faces in a provided image: >>> bounding_box, quality = bob.ip.facedetect.detect_single_face(lena) >>> y, x = bounding_box.topleft >>> height, width = bounding_box.size - >>> print(y, x, height, width) + >>> print((y, x, height, width)) (...) .. note::