diff --git a/libraries/script-engine/src/ScriptEngine.h b/libraries/script-engine/src/ScriptEngine.h
index 7300f52f9b..06085f30fd 100644
--- a/libraries/script-engine/src/ScriptEngine.h
+++ b/libraries/script-engine/src/ScriptEngine.h
@@ -416,8 +416,10 @@ public:
* Provides access to methods or objects provided in an external JavaScript or JSON file.
* See {@link https://docs.highfidelity.com/script/js-tips.html} for further details.
* @function Script.require
- * @param {string} module - The module to use. May be a JavaScript file or the name of a system module such as
- * "sppUi"
.
+ * @param {string} module - The module to use. May be a JavaScript file, a JSON file, or the name of a system module such
+ * as "appUi"
(i.e., the "appUi.js" system module JavaScript file).
+ * @returns {object|array} The value assigned to module.exports
in the JavaScript file, or the value defined
+ * in the JSON file.
*/
Q_INVOKABLE QScriptValue require(const QString& moduleId);