diff --git a/doc/reference/using-python.xml b/doc/reference/using-python.xml
index 7f63df77..123ea99f 100644
--- a/doc/reference/using-python.xml
+++ b/doc/reference/using-python.xml
@@ -161,11 +161,15 @@ min_value = im.min()
optional output arguments. Call it like this:
-min_value, x_pos, y_pos = im.min(x = True, y = True)
+min_value, opts = im.min(x = True, y = True)
+x = opts['x']
+y = opts['y']
- Although in this case, the .minpos()
convenience
- function would be simpler.
+ In other words, if optional output args are requested, an extra
+ dictionary is returned containing those objects.
+ Of course in this case, the .minpos()
convenience
+ function would be simpler, see below.