From dd0b8a70bfa58667081bf19d6ff70826c37122c9 Mon Sep 17 00:00:00 2001 From: Nathan Bierema Date: Sun, 1 Dec 2024 09:52:39 -0500 Subject: [PATCH] Docs Clock: Remove outdated description --- types/three/src/core/Clock.d.ts | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/types/three/src/core/Clock.d.ts b/types/three/src/core/Clock.d.ts index 05307083c..be39e97c2 100644 --- a/types/three/src/core/Clock.d.ts +++ b/types/three/src/core/Clock.d.ts @@ -1,10 +1,8 @@ /** - * Object for keeping track of time - * @remarks - * This uses {@link https://developer.mozilla.org/en-US/docs/Web/API/Performance/now | performance.now} if it is available, - * otherwise it reverts to the less accurate {@link https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Date/now | Date.now}. - * @see {@link https://threejs.org/docs/index.html#api/en/core/Clock | Official Documentation} - * @see {@link https://github.com/mrdoob/three.js/blob/master/src/core/Clock.js | Source} + * Object for keeping track of time. This uses + * [performance.now]{@link https://developer.mozilla.org/en-US/docs/Web/API/Performance/now}. + * @see [Official Documentation]{@link https://threejs.org/docs/index.html#api/en/core/Clock} + * @see [Source]{@link https://github.com/mrdoob/three.js/blob/master/src/core/Clock.js} */ export class Clock { /**