diff options
author | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2016-01-13 16:35:48 +0100 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2016-01-13 16:35:48 +0100 |
commit | 2e900dd0317299294f4cb27213be6f5b36d4b8b8 (patch) | |
tree | 25fb6767406b8354da92b2ac0883a5bdeef05457 /prolog/problems/family_relations/mother_2 | |
parent | 388b32039898cc8f1784378689007254eb7a33b6 (diff) |
Use argument mode indicators in Prolog problem descriptions
Diffstat (limited to 'prolog/problems/family_relations/mother_2')
-rw-r--r-- | prolog/problems/family_relations/mother_2/en.py | 2 | ||||
-rw-r--r-- | prolog/problems/family_relations/mother_2/sl.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/prolog/problems/family_relations/mother_2/en.py b/prolog/problems/family_relations/mother_2/en.py index 531c3d7..3614473 100644 --- a/prolog/problems/family_relations/mother_2/en.py +++ b/prolog/problems/family_relations/mother_2/en.py @@ -4,7 +4,7 @@ name = 'mother/2' slug = 'the mother-child relation' description = '''\ -<p><code>mother(M, C)</code>: <code>M</code> is the mother of <code>C</code>.</p> +<p><code>mother(?M, ?C)</code>: <code>M</code> is the mother of <code>C</code>.</p> <pre> ?- mother(tina, william). true. diff --git a/prolog/problems/family_relations/mother_2/sl.py b/prolog/problems/family_relations/mother_2/sl.py index 5869033..32103a8 100644 --- a/prolog/problems/family_relations/mother_2/sl.py +++ b/prolog/problems/family_relations/mother_2/sl.py @@ -4,7 +4,7 @@ name = 'mother/2' slug = 'X je mama od Y' description = '''\ -<p><code>mother(X, Y)</code>: <code>X</code> je mama od <code>Y</code>.</p> +<p><code>mother(?X, ?Y)</code>: <code>X</code> je mama od <code>Y</code>.</p> <pre> ?- mother(tina, william). true. |