Skip to content

Commit 9a525a8

Browse files
Add double backquotes for rst code samples (#1298)
Appends to (#1246) Co-authored-by: kolibril13 <[email protected]>
1 parent 49b50cf commit 9a525a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

manim/mobject/value_tracker.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ def increment_value(self, d_value):
6666
self.set_value(self.get_value() + d_value)
6767

6868
def __iadd__(self, d_value):
69-
"""adds `+=` syntax to increment the value of the ValueTracker"""
69+
"""adds ``+=`` syntax to increment the value of the ValueTracker"""
7070
self.increment_value(d_value)
7171
return self
7272

7373
def __isub__(self, d_value):
74-
"""adds `-=` syntax to decrement the value of the ValueTracker"""
74+
"""adds ``-=`` syntax to decrement the value of the ValueTracker"""
7575
self.increment_value(-d_value)
7676
return self
7777

0 commit comments

Comments
 (0)