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

Improved some hint messages

parent c0ff5731
...@@ -212,14 +212,14 @@ def variable_root(root, args): ...@@ -212,14 +212,14 @@ def variable_root(root, args):
MESSAGES[variable_root] = \ MESSAGES[variable_root] = \
_('Apply standard derivative `d/dx x ^ n = n * x ^ (n - 1)` on {0}.') _('Apply standard derivative `d/dx x ^ n = n * x ^ (n - 1)` to {0}.')
def variable_exponent(root, args): def variable_exponent(root, args):
""" """
der(g ^ x, x) -> g ^ x * ln(g) der(g ^ x, x) -> g ^ x * ln(g)
Shortcut rule (because of presence on formula list): Shortcut rule (because of presence of formula list):
der(e ^ x, x) -> e ^ x der(e ^ x, x) -> e ^ x
""" """
g, x = root[0] g, x = root[0]
...@@ -231,7 +231,7 @@ def variable_exponent(root, args): ...@@ -231,7 +231,7 @@ def variable_exponent(root, args):
MESSAGES[variable_exponent] = \ MESSAGES[variable_exponent] = \
_('Apply standard derivative `d/dx g ^ x = g ^ x * ln g`.') _('Apply standard derivative `d/dx g ^ x = g ^ x * ln g` to {0}.')
def match_logarithmic(node): def match_logarithmic(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