Rok 6 years ago
parent
commit
a6544c1768
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Maths/math.ts

+ 1 - 1
src/Maths/math.ts

@@ -2086,7 +2086,7 @@ export class Vector3 {
     // Properties
     // Properties
     /**
     /**
      * Gets the length of the Vector3
      * Gets the length of the Vector3
-     * @returns the length of the Vecto3
+     * @returns the length of the Vector3
      */
      */
     public length(): number {
     public length(): number {
         return Math.sqrt(this.x * this.x + this.y * this.y + this.z * this.z);
         return Math.sqrt(this.x * this.x + this.y * this.y + this.z * this.z);