summaryrefslogtreecommitdiff
path: root/prolog/problems/family_relations/father_2/en.py
diff options
context:
space:
mode:
authorMartin Možina <martin.mozina@fri.uni-lj.si>2015-10-18 19:21:36 +0200
committerMartin Možina <martin.mozina@fri.uni-lj.si>2015-10-18 19:21:36 +0200
commitce6b6b0bc9af3cff176bd995ee25c8334eea632c (patch)
tree0b6606017549c342171440fd61059e57195e7384 /prolog/problems/family_relations/father_2/en.py
parent7dd2b4dc917fe26267c1db1f5f58585a5417cb8c (diff)
parent8f0a1bdd9a2f2e0b951dd07c23d7f4db1189aee5 (diff)
Merge branch 'master' of 192.168.15.97:codeq-problems
Diffstat (limited to 'prolog/problems/family_relations/father_2/en.py')
-rw-r--r--prolog/problems/family_relations/father_2/en.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/prolog/problems/family_relations/father_2/en.py b/prolog/problems/family_relations/father_2/en.py
index 722c016..bde9a2d 100644
--- a/prolog/problems/family_relations/father_2/en.py
+++ b/prolog/problems/family_relations/father_2/en.py
@@ -1,14 +1,14 @@
# coding=utf-8
-name = 'mother/2'
-slug = 'the mother-child relation'
+name = 'father/2'
+slug = 'the father-child relation'
description = '''\
-<p><code>mother(M, C)</code>: <code>M</code> is the mother of <code>C</code>.</p>
+<p><code>father(X, Y)</code>: <code>X</code> is the father of <code>Y</code>.</p>
<pre>
- ?- mother(tina, william).
+ ?- father(thomas, william).
true.
- ?- mother(nevia, X).
+ ?- father(aleksander, X).
X = luana ;
X = daniela.
</pre>'''