aboutsummaryrefslogtreecommitdiff
path: root/libjava
diff options
context:
space:
mode:
Diffstat (limited to 'libjava')
-rw-r--r--libjava/ChangeLog8
-rw-r--r--libjava/defineclass.cc2
-rw-r--r--libjava/java/awt/image/ColorModel.java8
-rw-r--r--libjava/java/awt/image/SampleModel.java2
-rw-r--r--libjava/java/lang/Package.java2
-rw-r--r--libjava/java/security/cert/X509Extension.java2
6 files changed, 16 insertions, 8 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog
index 985e84b..cd9e847 100644
--- a/libjava/ChangeLog
+++ b/libjava/ChangeLog
@@ -1,3 +1,11 @@
+2001-10-07 Joseph S. Myers <jsm28@cam.ac.uk>
+
+ * defineclass.cc, java/awt/image/ColorModel.java,
+ java/awt/image/SampleModel.java, java/lang/Package.java,
+ java/security/cert/X509Extension.java: Fix spelling errors of
+ "separate" as "seperate", and corresponding spelling errors of
+ related words.
+
2001-10-05 Tom Tromey <tromey@redhat.com>
* java/text/DecimalFormat.java (format): Use localized minus sign
diff --git a/libjava/defineclass.cc b/libjava/defineclass.cc
index 7ef51dc..e25b106 100644
--- a/libjava/defineclass.cc
+++ b/libjava/defineclass.cc
@@ -46,7 +46,7 @@ static _Jv_Utf8Const *clinit_name = _Jv_makeUtf8Const ("<clinit>", 8);
static _Jv_Utf8Const *init_name = _Jv_makeUtf8Const ("<init>", 6);
-// these go in some seperate functions, to avoid having _Jv_InitClass
+// these go in some separate functions, to avoid having _Jv_InitClass
// inserted all over the place.
static void throw_internal_error (char *msg)
__attribute__ ((__noreturn__));
diff --git a/libjava/java/awt/image/ColorModel.java b/libjava/java/awt/image/ColorModel.java
index 51e0bbb..8df1f3ba 100644
--- a/libjava/java/awt/image/ColorModel.java
+++ b/libjava/java/awt/image/ColorModel.java
@@ -39,7 +39,7 @@ import gnu.gcj.awt.Buffers;
* <li>arrays of unnormalized component samples of single pixel: these
* samples are scaled and multiplied according to the color model, but
* is otherwise not packed or encoded. Each element of the array is one
- * seperate component sample. The color model only operate on the
+ * separate component sample. The color model only operate on the
* components from one pixel at a time, but using offsets, allows
* manipulation of arrays that contain the components of more than one
* pixel.</li>
@@ -337,7 +337,7 @@ public abstract class ColorModel implements Transparency
* @return arrays of unnormalized component samples of single
* pixel. The scale and multiplication state of the samples are
* according to the color model. Each component sample is stored
- * as a seperate element in the array.
+ * as a separate element in the array.
*/
public int[] getComponents(int pixel, int[] components, int offset) {
// FIXME: implement
@@ -358,7 +358,7 @@ public abstract class ColorModel implements Transparency
* @return arrays of unnormalized component samples of single
* pixel. The scale and multiplication state of the samples are
* according to the color model. Each component sample is stored
- * as a seperate element in the array.
+ * as a separate element in the array.
*/
public int[] getComponents(Object pixel, int[] components, int offset)
{
@@ -429,7 +429,7 @@ public abstract class ColorModel implements Transparency
* @param arrays of unnormalized component samples of single
* pixel. The scale and multiplication state of the samples are
* according to the color model. Each component sample is stored
- * as a seperate element in the array.
+ * as a separate element in the array.
*
* @return pixel value encoded according to the color model.
*/
diff --git a/libjava/java/awt/image/SampleModel.java b/libjava/java/awt/image/SampleModel.java
index 9ce1ae6..132257c 100644
--- a/libjava/java/awt/image/SampleModel.java
+++ b/libjava/java/awt/image/SampleModel.java
@@ -80,7 +80,7 @@ public abstract class SampleModel
*
* This method is provided as a faster alternative to getPixel(),
* that can be used when there is no need to decode the pixel into
- * seperate sample values.
+ * separate sample values.
*
* @param obj An array to return the pixel data in. If null, an
* array of the right type and size will be created.
diff --git a/libjava/java/lang/Package.java b/libjava/java/lang/Package.java
index 26bcb98..189d26e 100644
--- a/libjava/java/lang/Package.java
+++ b/libjava/java/lang/Package.java
@@ -44,7 +44,7 @@ import java.util.StringTokenizer;
* specification as implemented by a package. A package is considered
* compatible with another version if the version of the specification is
* equal or higher then the requested version. Version numbers are represented
- * as strings of positive numbers seperated by dots (e.g. "1.2.0").
+ * as strings of positive numbers separated by dots (e.g. "1.2.0").
* The first number is called the major number, the second the minor,
* the third the micro, etc. A version is considered higher then another
* version if it has a bigger major number then the another version or when
diff --git a/libjava/java/security/cert/X509Extension.java b/libjava/java/security/cert/X509Extension.java
index 593d4a1..a230d0c 100644
--- a/libjava/java/security/cert/X509Extension.java
+++ b/libjava/java/security/cert/X509Extension.java
@@ -95,7 +95,7 @@ public interface X509Extension
/**
Returns the DER encoded OCTET string for the specified
extension value identified by a OID. The OID is a string
- of number seperated by periods. Ex: 12.23.45.67
+ of number separated by periods. Ex: 12.23.45.67
*/
public byte[] getExtensionValue(String oid);