summaryrefslogtreecommitdiff
path: root/prolog/problems/trees/maxt_2/en.py
diff options
context:
space:
mode:
Diffstat (limited to 'prolog/problems/trees/maxt_2/en.py')
-rw-r--r--prolog/problems/trees/maxt_2/en.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/prolog/problems/trees/maxt_2/en.py b/prolog/problems/trees/maxt_2/en.py
index 20db52e..bb222f8 100644
--- a/prolog/problems/trees/maxt_2/en.py
+++ b/prolog/problems/trees/maxt_2/en.py
@@ -6,8 +6,8 @@ slug = 'find the greatest element in a tree'
description = '''\
<p><code>maxT(Tree, Max)</code>: <code>Max</code> is the greatest element in the tree <code>Tree</code>.</p>
<pre>
- ?- maxT(t(1, t(2), t(3)), Max).
- Max = 3.
+?- maxT(t(1, t(2), t(3)), Max).
+ Max = 3.
</pre>'''
hint = {}