소스 검색

Merge pull request #189 from etherealmachine/patch-1

Fix typo in doc.
Daniel Salvadori 5 년 전
부모
커밋
ec5f075d66
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      math32/vector3.go

+ 1 - 1
math32/vector3.go

@@ -393,7 +393,7 @@ func (v *Vector3) SetLength(l float32) *Vector3 {
 }
 
 // Lerp sets each of this vector's components to the linear interpolated value of
-// alpha between ifself and the corresponding other component.
+// alpha between itself and the corresponding other component.
 // Returns the pointer to this updated vector.
 func (v *Vector3) Lerp(other *Vector3, alpha float32) *Vector3 {