From 12df9c462d8c8168ae3ef527d69e57165b15c93f Mon Sep 17 00:00:00 2001 From: Sabine Lim Date: Sat, 20 May 2023 21:21:30 +1000 Subject: [PATCH] Fix typo --- docs/guides/xml.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/xml.md b/docs/guides/xml.md index 7ce97c5..8eaa0a6 100644 --- a/docs/guides/xml.md +++ b/docs/guides/xml.md @@ -91,7 +91,7 @@ This layout can be passed props like any other object in the layout, as seen in Reacting to user input is easier than ever with Basalt XML's concept of observable values and observers for said values. This powerful feature allows for properties to be updated automatically from observable values, without needing the programmer to manually call functions to update the object. -To create an obervable value, simply use the `basalt.observable(initialValue)` function, which returns getter and setter functions. For example: +To create an observable value, simply use the `basalt.observable(initialValue)` function, which returns getter and setter functions. For example: ```xml