Fixed typo in the constructor comments

Fixed a typo above one of the constructors in the Vector2f class.
"Constructor for Vector3f." -> "Constructor for Vector2f."
This commit is contained in:
Matthew 'siD' Van der Bijl 2015-04-27 10:36:27 +02:00
parent 132cecf861
commit 589ce0bd5c
1 changed files with 3 additions and 3 deletions

View File

@ -52,21 +52,21 @@ public class Vector2f extends Vector implements Serializable, ReadableVector2f,
public float x, y;
/**
* Constructor for Vector3f.
* Constructor for Vector2f.
*/
public Vector2f() {
super();
}
/**
* Constructor
* Constructor.
*/
public Vector2f(ReadableVector2f src) {
set(src);
}
/**
* Constructor
* Constructor.
*/
public Vector2f(float x, float y) {
set(x, y);