diff options
author | Timotej Lazar <timotej.lazar@araneo.org> | 2015-09-18 16:29:49 +0200 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@araneo.org> | 2015-09-18 16:29:49 +0200 |
commit | e307b6b4235d57a4033a3aaed910615755d84473 (patch) | |
tree | f2e29649b600d6841bb3ea6e403f3346640bfc53 /prolog | |
parent | 839c91ce9f5fb8afacf0a9017fc1ae914e8b7386 (diff) |
Fix a typo
Diffstat (limited to 'prolog')
-rw-r--r-- | prolog/problems/family_relations/brother_2/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/prolog/problems/family_relations/brother_2/common.py b/prolog/problems/family_relations/brother_2/common.py index e725682..a8047fb 100644 --- a/prolog/problems/family_relations/brother_2/common.py +++ b/prolog/problems/family_relations/brother_2/common.py @@ -21,7 +21,7 @@ brother(X, Y) :- X \== Y. ''' -hint_typs = { +hint_type = { 'general_hint': HintSequence('general_hint', 3), 'x_must_be_male': Hint('x_must_be_male'), 'common_parent_needed': Hint('common_parent_needed'), |