Skip to content

Commit 7c32066

Browse files
committed
spacing
1 parent ba0ac7b commit 7c32066

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/Features/Cleanup/Janitor.lua

+7-5
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,9 @@ local function getJanitors()
1313
return require(script.Parent).Janitors
1414
end
1515

16-
--[=[
17-
@class Janitor
18-
Another class.
19-
]=]
16+
--- @class Janitor
17+
--- Another class.
18+
2019

2120
--[=[
2221
@within Janitor
@@ -28,7 +27,6 @@ end
2827
@return name: string?
2928
@return index: number | string
3029
]=]
31-
3230
function Janitor.new(janitorName: string?)
3331
local self = setmetatable({}, Janitor)
3432
self._tasks = {}
@@ -42,12 +40,14 @@ function Janitor.new(janitorName: string?)
4240

4341
return self
4442
end
43+
4544
--[=[
4645
@since 0.11
4746
]=]
4847
function Janitor.isJanitor(value: table?): boolean
4948
return type(value) == "table" and value.ClassName == "Janitor"
5049
end
50+
5151
--[=[
5252
@within Janitor
5353
@since 0.11
@@ -78,6 +78,7 @@ function Janitor:Give(task: any)
7878
end
7979
return handleTask(task)
8080
end
81+
8182
--[=[
8283
@within Janitor
8384
@since 0.11
@@ -116,6 +117,7 @@ function Janitor:Cleanup(taskTable: table?)
116117
index, task = next(tasks)
117118
end
118119
end
120+
119121
--[=[
120122
@within Janitor
121123
@since 0.11

0 commit comments

Comments
 (0)