Skip to content

Commit

Permalink
Merge pull request BabylonJS#6412 from rpajo/master
Browse files Browse the repository at this point in the history
Typo fix
  • Loading branch information
sebavan authored May 29, 2019
2 parents 46a45b2 + a6544c1 commit ac7f20b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Maths/math.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2086,7 +2086,7 @@ export class Vector3 {
// Properties
/**
* Gets the length of the Vector3
* @returns the length of the Vecto3
* @returns the length of the Vector3
*/
public length(): number {
return Math.sqrt(this.x * this.x + this.y * this.y + this.z * this.z);
Expand Down

0 comments on commit ac7f20b

Please sign in to comment.