From 0ae4b9736997c7aac782caa24737f7e024e36a44 Mon Sep 17 00:00:00 2001 From: Blizzero <78508058+Blizzero@users.noreply.github.com> Date: Wed, 23 Oct 2024 00:53:50 -0400 Subject: [PATCH] Add missing argument --- pages/getting-started/2-introduction/4-script-arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/getting-started/2-introduction/4-script-arguments.md b/pages/getting-started/2-introduction/4-script-arguments.md index 78d4b6d..0f88c0c 100644 --- a/pages/getting-started/2-introduction/4-script-arguments.md +++ b/pages/getting-started/2-introduction/4-script-arguments.md @@ -34,7 +34,7 @@ elseif #process.args > 0 then print(process.args) else print("Got no arguments ☹️") - local prompted = stdio.prompt("Please enter some text:") + local prompted = stdio.prompt("text", "Please enter some text:") print("Got prompted text:", prompted) end ```