commit 437bc43edbe2cd37eea60f00bde5b3b37f2273b5
Author: Leszek Koltunski <leszek@distorted.org>
Date:   Thu Jun 2 21:24:54 2016 +0100

    Adjust comments.

diff --git a/src/main/java/org/distorted/library/DistortedObject.java b/src/main/java/org/distorted/library/DistortedObject.java
index a54d522..1f440d8 100644
--- a/src/main/java/org/distorted/library/DistortedObject.java
+++ b/src/main/java/org/distorted/library/DistortedObject.java
@@ -6,7 +6,7 @@ import android.opengl.GLUtils;
 
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 /**
- * A abstract class. All Objects to which Distorted Graphics effects can be applied need to be extended from here.
+ * All Objects to which Distorted Graphics effects can be applied need to be extended from here.
  */
 public abstract class DistortedObject 
 { 
diff --git a/src/main/java/org/distorted/library/Interpolator.java b/src/main/java/org/distorted/library/Interpolator.java
index e55aff1..f213a3b 100644
--- a/src/main/java/org/distorted/library/Interpolator.java
+++ b/src/main/java/org/distorted/library/Interpolator.java
@@ -3,7 +3,7 @@ package org.distorted.library;
 import java.util.Random;
 
 ///////////////////////////////////////////////////////////////////////////////////////////////////
-/** A class to interpolate between a List of FloatNDs.
+/** A class to interpolate between a List of Float{1,2,3,4}Ds.
 * <p><ul>
 * <li>if there is only one Point, just jump to it.
 * <li>if there are two Points, linearly bounce between them
@@ -145,9 +145,9 @@ public abstract class Interpolator
 
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 /**
- * Returns the number of FloatNDs this Interpolator has been fed with.
+ * Returns the number of Float{1,2,3,4}Ds this Interpolator has been fed with.
  *   
- * @return the number of FloatNDs we are currently interpolating through.
+ * @return the number of Float{1,2,3,4}Ds we are currently interpolating through.
  */
   public synchronized int getNumPoints()
     {
@@ -158,12 +158,12 @@ public abstract class Interpolator
 /**
  * Controls how many times we want to interpolate.
  * <p>
- * Count equal to 1 means 'go from the first FloatND to the last and back'. Does not have to be an 
+ * Count equal to 1 means 'go from the first Float{1,2,3,4}D to the last and back'. Does not have to be an
  * integer - i.e. count=1.5 would mean 'start at the first Point, go to the last, come back to the first, 
  * go to the last again and stop'.
  * Count<=0 means 'go on interpolating indefinitely'.
  * 
- * @param count the number of times we want to interpolate between our collection of FloatNDs. 
+ * @param count the number of times we want to interpolate between our collection of Float{1,2,3,4}Ds.
  */
   public void setCount(float count)
     {
