Commit 2304214e authored by Taddeus Kroes's avatar Taddeus Kroes

Modified some hint messages.

parent 864949a2
...@@ -45,7 +45,7 @@ def division_by_one(root, args): ...@@ -45,7 +45,7 @@ def division_by_one(root, args):
return args[0] return args[0]
MESSAGES[division_by_one] = _('Division of {1} by 1 reduces to {1}.') MESSAGES[division_by_one] = _('Division by 1 yields the nominator.')
def division_of_zero(root, args): def division_of_zero(root, args):
...@@ -65,7 +65,7 @@ def division_by_self(root, args): ...@@ -65,7 +65,7 @@ def division_by_self(root, args):
return L(1) return L(1)
MESSAGES[division_by_self] = _('Division of {1} by {1} reduces to 1.') MESSAGES[division_by_self] = _('Division of {1} by itself reduces to 1.')
def match_add_constant_fractions(node): def match_add_constant_fractions(node):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment