Commit a1b82033 authored by Taddeüs Kroes's avatar Taddeüs Kroes

Improved some hint messages for derivatives

parent 4e488c46
...@@ -314,7 +314,7 @@ def sinus(root, args): ...@@ -314,7 +314,7 @@ def sinus(root, args):
return cos(root[0][0]) return cos(root[0][0])
MESSAGES[sinus] = _('Apply standard derivative `d/dx sin(x)` is `cos(x)`.') MESSAGES[sinus] = _('Apply standard derivative `d/dx sin(x)` = `cos(x)`.')
def cosinus(root, args): def cosinus(root, args):
...@@ -324,7 +324,7 @@ def cosinus(root, args): ...@@ -324,7 +324,7 @@ def cosinus(root, args):
return -sin(root[0][0]) return -sin(root[0][0])
MESSAGES[cosinus] = _('Apply standard derivative `d/dx cos(x)` is `-sin(x)`.') MESSAGES[cosinus] = _('Apply standard derivative `d/dx cos(x)` = `-sin(x)`.')
def tangens(root, args): def tangens(root, args):
...@@ -337,7 +337,7 @@ def tangens(root, args): ...@@ -337,7 +337,7 @@ def tangens(root, args):
MESSAGES[tangens] = \ MESSAGES[tangens] = \
_('Convert the tanges to a division and apply the product rule.') _('Convert the tangens to a division and apply the product rule.')
def match_sum_product_rule(node): def match_sum_product_rule(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