diff --git a/libraries/script-engine/src/Quat.h b/libraries/script-engine/src/Quat.h index 23bfe56309..c1eaa97797 100644 --- a/libraries/script-engine/src/Quat.h +++ b/libraries/script-engine/src/Quat.h @@ -188,7 +188,7 @@ public slots: * @param {number} roll - The roll angle in degrees. * @returns {Quat} A quaternion created using the pitch, yaw, and roll Euler angles. * @example Create a rotation of 180 degrees about the y axis. - * var rotation = Quat.fromPitchYawRollDgrees(0, 180, 0 ); + * var rotation = Quat.fromPitchYawRollDegrees(0, 180, 0 ); */ glm::quat fromPitchYawRollDegrees(float pitch, float yaw, float roll);