From c9808f476359ac7263be79edc241afd29dd85ed6 Mon Sep 17 00:00:00 2001 From: Nidho <124746469+NidhoRoblox@users.noreply.github.com> Date: Mon, 17 Jul 2023 17:31:59 -0700 Subject: [PATCH] Update Using Identifiers.md --- docs/Tutorials/Using Identifiers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Tutorials/Using Identifiers.md b/docs/Tutorials/Using Identifiers.md index 3ac50bd..1e9edca 100644 --- a/docs/Tutorials/Using Identifiers.md +++ b/docs/Tutorials/Using Identifiers.md @@ -32,7 +32,7 @@ local anotherThing = BridgeNet2.ReferenceIdentifier("anotherThing") sendSomeData:Fire({ [firstThingToSend] = 5, - [anotherThingToSend] = false, + [anotherThing] = false, }) ``` -At the cost of 2 lines of code, we completely solved the problem! Our code is now both readable and efficient. \ No newline at end of file +At the cost of 2 lines of code, we completely solved the problem! Our code is now both readable and efficient.