Merge pull request #113 from Blunderchips/master

Fixed typo in the constructor comments
This commit is contained in:
Ioannis Tsakpinis 2015-04-27 12:04:47 +03:00
commit ef5149a3c3
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; public float x, y;
/** /**
* Constructor for Vector3f. * Constructor for Vector2f.
*/ */
public Vector2f() { public Vector2f() {
super(); super();
} }
/** /**
* Constructor * Constructor.
*/ */
public Vector2f(ReadableVector2f src) { public Vector2f(ReadableVector2f src) {
set(src); set(src);
} }
/** /**
* Constructor * Constructor.
*/ */
public Vector2f(float x, float y) { public Vector2f(float x, float y) {
set(x, y); set(x, y);