We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49b50cf commit 9a525a8Copy full SHA for 9a525a8
manim/mobject/value_tracker.py
@@ -66,12 +66,12 @@ def increment_value(self, d_value):
66
self.set_value(self.get_value() + d_value)
67
68
def __iadd__(self, d_value):
69
- """adds `+=` syntax to increment the value of the ValueTracker"""
+ """adds ``+=`` syntax to increment the value of the ValueTracker"""
70
self.increment_value(d_value)
71
return self
72
73
def __isub__(self, d_value):
74
- """adds `-=` syntax to decrement the value of the ValueTracker"""
+ """adds ``-=`` syntax to decrement the value of the ValueTracker"""
75
self.increment_value(-d_value)
76
77
0 commit comments