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 ```