@@ -35,19 +35,19 @@ class EmitterSystem(object):
3535
3636 `EmitterSystem` offers a few advantages over using plain emitters.
3737
38- There are the `bottom_emitter` and `top_emitter`, which allow, respectively,
39- to keep track of each `emit`ting that goes on, and to generate an `emit`ting
40- that affects all emitters in the system.
38+ There are the `bottom_emitter` and `top_emitter`, which allow,
39+ respectively, to keep track of each `emit`ting that goes on, and to
40+ generate an `emit`ting that affects all emitters in the system.
4141
4242 The `EmitterSystem` also offers a context manager,
4343 `.freeze_cache_rebuilding`. When you do actions using this context manager,
4444 the emitters will not rebuild their cache when changing their
4545 inputs/outputs. When the outermost context manager has exited, all the
4646 caches for these emitters will get rebuilt.
4747 '''
48- # possible future idea: there is the idea of optimizing by cutting redundant
49- # links between boxes. I'm a bit suspicious of it. The next logical step is
50- # to make inputs and outputs abstract.
48+ # possible future idea: there is the idea of optimizing by cutting
49+ # redundant links between boxes. I'm a bit suspicious of it. The next
50+ # logical step is to make inputs and outputs abstract.
5151 def __init__ (self ):
5252
5353 self .emitters = set ()
0 commit comments