diff --git a/interface/src/scripting/Audio.h b/interface/src/scripting/Audio.h
index 738eeb5dfe..4c4bf6dd60 100644
--- a/interface/src/scripting/Audio.h
+++ b/interface/src/scripting/Audio.h
@@ -51,7 +51,7 @@ class Audio : public AudioScriptingInterface, protected ReadWriteLockable {
* @property {object} devices Read-only. Deprecated: This property is deprecated and will be
* removed.
* @property {boolean} isSoloing Read-only. true
if any nodes are soloed.
- * @property {QVector} soloList Read-only. Get the list of currently soloed node UUIDs.
+ * @property {Uuid[]} soloList Read-only. Get the list of currently soloed node UUIDs.
*/
Q_PROPERTY(bool muted READ isMuted WRITE setMuted NOTIFY mutedChanged)
diff --git a/libraries/script-engine/src/AudioScriptingInterface.h b/libraries/script-engine/src/AudioScriptingInterface.h
index ba570fd7c0..2854445b4f 100644
--- a/libraries/script-engine/src/AudioScriptingInterface.h
+++ b/libraries/script-engine/src/AudioScriptingInterface.h
@@ -43,7 +43,7 @@ public:
/**jsdoc
* Add nodes to the audio solo list
* @function Audio.addToSoloList
- * @param {QVector} uuidList - List of node UUIDs to add to the solo list.
+ * @param {Uuid[]} uuidList - List of node UUIDs to add to the solo list.
*/
Q_INVOKABLE void addToSoloList(QVector uuidList) {
_localAudioInterface->getAudioSolo().addUUIDs(uuidList);
@@ -52,7 +52,7 @@ public:
/**jsdoc
* Remove nodes from the audio solo list
* @function Audio.removeFromSoloList
- * @param {QVector} uuidList - List of node UUIDs to remove from the solo list.
+ * @param {Uuid[]} uuidList - List of node UUIDs to remove from the solo list.
*/
Q_INVOKABLE void removeFromSoloList(QVector uuidList) {
_localAudioInterface->getAudioSolo().removeUUIDs(uuidList);