File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff 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 *
You can’t perform that action at this time.
0 commit comments