From 56ff6e9cc562dbd77b6c106f9b28f72544814abc Mon Sep 17 00:00:00 2001 From: Eric Tuvesson Date: Mon, 11 Sep 2023 10:32:54 +0200 Subject: [PATCH] chore: Object reference typo (#6) Co-authored-by: Rico --- javascript/reference/objects.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/reference/objects.md b/javascript/reference/objects.md index c7fe08d..4444479 100644 --- a/javascript/reference/objects.md +++ b/javascript/reference/objects.md @@ -9,7 +9,7 @@ title: Noodl.Objects One step above **Variable**s are **Object**s, this is a global data model of Noodl objects. Each object is referenced with an **Id** and can contain a set of properties. -You can access alla objects in your workspace through their **Id** and the `Noodl.Objects` prefix. +You can access all objects in your workspace through their **Id** and the `Noodl.Objects` prefix. Change a property of an object will trigger all connections from object nodes with the corresponding **Id** and property. You can learn more about objects and how you use them in your Noodl applications [here](/docs/guides/data/objects).