Skip to content

Commit

Permalink
Javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanSweet committed Nov 25, 2015
1 parent d22b036 commit b33a2f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gdx/src/com/badlogic/gdx/math/Interpolation.java
Expand Up @@ -42,9 +42,9 @@ public float apply (float a) {
};

static public final Pow pow2 = new Pow(2);
/** Fast, then slow. */
/** Slow, then fast. */
static public final PowIn pow2In = new PowIn(2);
/** Slow, then falst. */
/** Fast, then slow. */
static public final PowOut pow2Out = new PowOut(2);

static public final Pow pow3 = new Pow(3);
Expand Down

0 comments on commit b33a2f5

Please sign in to comment.