Skip to content
Snippets Groups Projects
Commit 2304214e authored by Taddeus Kroes's avatar Taddeus Kroes
Browse files

Modified some hint messages.

parent 864949a2
No related branches found
No related tags found
No related merge requests found
...@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment