File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,9 +26,9 @@ Parallel.__index = Parallel
2626
2727function Parallel .of (runnable : (...any ? ) -> any ? ): PreparedParallel
2828 local self = setmetatable ({
29- _runnable = runnable ,
30- _name = "ParallelWorker" ,
31- _actorCount = 1 ,
29+ _runnable = runnable ,
30+ _name = "ParallelWorker" ,
31+ _actorCount = 1 ,
3232 _bindableEvent = Instance .new ("BindableEvent" ),
3333 _folder = Instance .new ("Folder" ),
3434
@@ -38,7 +38,7 @@ function Parallel.of(runnable: (...any?) -> any?): PreparedParallel
3838
3939 _connection = nil ,
4040 _destroyed = false ,
41- }, Parallel )
41+ }, Parallel )
4242
4343 self ._connection = self ._bindableEvent .Event :Connect (function (uuid : string , ... : any )
4444 self ._results [uuid ] = {... }
@@ -175,7 +175,7 @@ function Parallel._createTemplatedActor(): Actor
175175end
176176
177177function Parallel :__tostring ()
178- return string.format ("Parallel(%s)" , self ._name )
178+ return string.format ("Parallel(%s)" , self ._name )
179179end
180180
181181return Parallel
You can’t perform that action at this time.
0 commit comments