Skip to content

Commit 41ce612

Browse files
committed
Fix spaces
1 parent 5d03828 commit 41ce612

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

lib/init.luau

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ Parallel.__index = Parallel
2626

2727
function 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
175175
end
176176

177177
function Parallel:__tostring()
178-
return string.format("Parallel(%s)", self._name)
178+
return string.format("Parallel(%s)", self._name)
179179
end
180180

181181
return Parallel

0 commit comments

Comments
 (0)