Skip to content

Commit 64f5edf

Browse files
committed
v1.0.4
- Missing semicolons from BinderClass documentation functions
1 parent 5eae65b commit 64f5edf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rbxts/binder",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "Typings for Quenty's Binder module",
55
"main": "out/init.lua",
66
"scripts": {

src/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ interface Binder<T extends Binder.BinderClass = Binder.BinderClass> {
4040
* });
4141
*
4242
* // Load all birds
43-
* birdBinder.Init()
43+
* birdBinder.Init();
4444
*/
4545
GetClassAddedSignal(): Signal<(classInst: T, inst: Instance) => void>;
4646

@@ -58,7 +58,7 @@ interface Binder<T extends Binder.BinderClass = Binder.BinderClass> {
5858
* birdBinder.GetAll().forEach(bird => bird.Update());
5959
* });
6060
*
61-
* birdBinder.Init()
61+
* birdBinder.Init();
6262
*/
6363
GetAll(): T[];
6464

@@ -77,7 +77,7 @@ interface Binder<T extends Binder.BinderClass = Binder.BinderClass> {
7777
* // Update every bird every frame
7878
* RunService.Stepped.Connect(() => {
7979
* for (const [bird] of birdBinder.GetAllSet()) {
80-
* bird:Update()
80+
* bird:Update();
8181
* }
8282
* }
8383
*

0 commit comments

Comments
 (0)