From ec25cfd60a532796a86826df4bae692020e12c95 Mon Sep 17 00:00:00 2001 From: SilverfishVR <53531160+SilverfishVR@users.noreply.github.com> Date: Fri, 17 Feb 2023 03:25:57 +0100 Subject: [PATCH] fix api docs Window.prompt() example example did not work as expected --- interface/src/scripting/WindowScriptingInterface.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/src/scripting/WindowScriptingInterface.h b/interface/src/scripting/WindowScriptingInterface.h index 9e8c2d5835..0583ca1849 100644 --- a/interface/src/scripting/WindowScriptingInterface.h +++ b/interface/src/scripting/WindowScriptingInterface.h @@ -112,10 +112,10 @@ public slots: * @function Window.prompt * @param {string} message - The question to display. * @param {string} defaultText - The default answer text. - * @returns {string} The text that the user entered if they select "OK", otherwise "". + * @returns {string} The text that the user entered if they select "OK", otherwise null. * @example