From eed0177ebebe916831136489c5c5f26b95d55f65 Mon Sep 17 00:00:00 2001 From: Cake <65981767+CakeVR@users.noreply.github.com> Date: Sat, 13 Jan 2024 10:23:33 +0100 Subject: [PATCH] Remove @ syntax in method call. --- documentation/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/getting-started.md b/documentation/getting-started.md index 35f9ff3..002d333 100644 --- a/documentation/getting-started.md +++ b/documentation/getting-started.md @@ -98,7 +98,7 @@ For that, we need two things to happen: - A) having nodes that can display our timeline and - B) start the execution of the timeline. -Luckily for us, Dialogic provides a method that does both of those: `Dialogic.start(@timeline_name_or_path)` +Luckily for us, Dialogic provides a method that does both of those: `Dialogic.start(timeline_name_or_path)` *So the code to start your dialog when an input is pressed could look like this:*