From 3068f77da0e961ef1160150710a38fbb98d8e220 Mon Sep 17 00:00:00 2001 From: Will Eastcott Date: Wed, 20 Nov 2024 13:46:53 +0000 Subject: [PATCH] Lint fix --- src/core/math/quat.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/math/quat.js b/src/core/math/quat.js index 0647f742780..6f97d359bf2 100644 --- a/src/core/math/quat.js +++ b/src/core/math/quat.js @@ -82,7 +82,7 @@ class Quat { /** * Conjugates a quaternion. - * + * * @param {Quat} [src] - The quaternion to conjugate. If not set, the operation is done in place. * @returns {Quat} Self for chaining. * @example @@ -341,7 +341,7 @@ class Quat { * const a = new pc.Quat().setFromEulerAngles(0, 30, 0); * const b = new pc.Quat().setFromEulerAngles(0, 60, 0); * const r = new pc.Quat(); - * + * * // r is set to a 90 degree rotation around the Y axis * // In other words, r = a * b * r.mul2(a, b);