diff --git a/Hlt/Hlt2Conf/python/Hlt2Conf/algorithms_thor.py b/Hlt/Hlt2Conf/python/Hlt2Conf/algorithms_thor.py
index da123bdb24fcb18fea39c7de0fc955465e0e5015..13ebe679b1eaf3a6ccb30164345491226c026025 100644
--- a/Hlt/Hlt2Conf/python/Hlt2Conf/algorithms_thor.py
+++ b/Hlt/Hlt2Conf/python/Hlt2Conf/algorithms_thor.py
@@ -83,7 +83,7 @@ def require_all(*cuts):
         >>> import Functors as F
         >>> functor = require_all(F.PT > 1, F.PID_K < 0)
         >>> functor.code_repr()
-        '( ( PT > 1 ) & ( PID_K < 0 ) )'
+        '( ( ( RHO_COORDINATE chain THREEMOMENTUM ) > 1 ) & ( PID_K < 0 ) )'
     """
     return functools.reduce(lambda f, g: f & g, cuts)