--- /home/cpdev/src/classpath/java/awt/image/DataBuffer.java	2005-07-02 21:03:25.000000000 +0000
+++ java/awt/image/DataBuffer.java	2005-06-30 05:34:32.000000000 +0000
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000, 2002, 2005  Free Software Foundation
+/* Copyright (C) 2000, 2002  Free Software Foundation
 
 This file is part of GNU Classpath.
 
@@ -46,43 +46,43 @@
 public abstract class DataBuffer
 {
   /**
-   * A constant representing a data type that uses <code>byte</code> primitives
+   * A constant representng a data type that uses <code>byte</code> primitives
    * as the storage unit.
    */
   public static final int TYPE_BYTE      =  0;
 
   /**
-   * A constant representing a data type that uses <code>short</code> 
+   * A constant representng a data type that uses <code>short</code> 
    * primitives as the storage unit.
    */
   public static final int TYPE_USHORT    =  1;
 
   /**
-   * A constant representing a data type that uses <code>short</code> 
+   * A constant representng a data type that uses <code>short</code> 
    * primitives as the storage unit.
    */
   public static final int TYPE_SHORT     =  2;
 
   /**
-   * A constant representing a data type that uses <code>int</code> 
+   * A constant representng a data type that uses <code>int</code> 
    * primitives as the storage unit.
    */
   public static final int TYPE_INT       =  3;
   
   /**
-   * A constant representing a data type that uses <code>float</code> 
+   * A constant representng a data type that uses <code>float</code> 
    * primitives as the storage unit.
    */
   public static final int TYPE_FLOAT     =  4;
 
   /**
-   * A constant representing a data type that uses <code>double</code> 
+   * A constant representng a data type that uses <code>double</code> 
    * primitives as the storage unit.
    */
   public static final int TYPE_DOUBLE    =  5;
 
   /**
-   * A constant representing an undefined data type.
+   * A constant representng an undefined data type.
    */
   public static final int TYPE_UNDEFINED = 32;
   
