diff --git a/assignment-client/src/AgentScriptingInterface.h b/assignment-client/src/AgentScriptingInterface.h
index 1f592a9f18..1242634dd5 100644
--- a/assignment-client/src/AgentScriptingInterface.h
+++ b/assignment-client/src/AgentScriptingInterface.h
@@ -63,21 +63,27 @@ public:
public slots:
/**jsdoc
- * Set whether or not the script should emulate an avatar.
+ * Sets whether or not the script should emulate an avatar.
* @function Agent.setIsAvatar
* @param {boolean} isAvatar - true
if the script should act as if an avatar, otherwise false
.
+ * @example
true
if the script is acting as if an avatar, otherwise false
.
*/
bool isAvatar() const { return _agent->isAvatar(); }
/**jsdoc
- * Play a sound from the position and with the orientation of the emulated avatar's head. No sound is played unless
+ * Plays a sound from the position and with the orientation of the emulated avatar's head. No sound is played unless
* isAvatar == true
.
* @function Agent.playAvatarSound
* @param {SoundObject} avatarSound - The sound to play.