This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

typos


Hi.

some typos: intial -> initial

jmc.

--- libjava/java/security/AlgorithmParameters.java	Tue Jan 22 23:40:30 2002
+++ AlgorithmParameters.java.new			Wed Feb 19 10:43:00 2003
@@ -85,7 +85,7 @@
      the specified algorithm parameters. If the algorithm is not 
      found then, it throws NoSuchAlgorithmException.
 
-     The returned AlgorithmParameters must still be intialized with
+     The returned AlgorithmParameters must still be initialized with
      init().
 
      @param algorithm the name of algorithm to choose
@@ -116,7 +116,7 @@
      NoSuchAlgorithmException. If the provider is not found, then 
      it throws NoSuchProviderException.
 
-     The returned AlgorithmParameters must still be intialized with
+     The returned AlgorithmParameters must still be initialized with
      init().
 
      @param algorithm the name of algorithm to choose
--- libjava/java/security/interfaces/DSAKeyPairGenerator.java	Tue Jan 22 23:40:34 2002
+++ DSAKeyPairGenerator.java.new	Wed Feb 19 10:48:34 2003
@@ -41,7 +41,7 @@
 import java.security.InvalidParameterException;
 
 /**
- * This interface contains methods for intializing a Digital Signature
+ * This interface contains methods for initializing a Digital Signature
  * Algorithm key generation engine.  The initialize methods may be called
  * any number of times.  If no explicity initialization call is made, then
  * the engine defaults to generating 1024-bit keys using pre-calculated
--- libjava/java/sql/Date.java	Tue Jan 22 23:40:36 2002
+++ Date.java.new		Wed Feb 19 10:50:14 2003
@@ -120,7 +120,7 @@
   * specified time value representing the number of seconds since 
   * Jan 1, 1970 at 12:00 midnight GMT.
   *
-  * @param time The time value to intialize this date to.
+  * @param time The time value to initialize this date to.
   */
 public
 Date(long date)
--- libjava/java/io/FileWriter.java	Tue Jan 22 23:40:14 2002
+++ FileWriter.java.new			Wed Feb 19 10:38:10 2003
@@ -96,7 +96,7 @@
 /*************************************************************************/
 
 /**
-  * This method intializes a new <code>FileWriter</code> object to write to the
+  * This method initializes a new <code>FileWriter</code> object to write to the
   * specified named file.
   *
   * @param name The name of the file to write to
@@ -114,7 +114,7 @@
 /*************************************************************************/
 
 /**
-  * This method intializes a new <code>FileWriter</code> object to write to the
+  * This method initializes a new <code>FileWriter</code> object to write to the
   * specified named file.  This form of the constructor allows the caller
   * to determin whether data should be written starting at the beginning or
   * the end of the file.
--- libjava/java/security/KeyPairGenerator.java		Tue Jan 22 23:40:30 2002
+++ KeyPairGenerator.java.new				Wed Feb 19 10:44:27 2003
@@ -230,7 +230,7 @@
 
   /**
      Generates a KeyPair according the rules for the algorithm.
-     Unless intialized, algorithm defaults will be used. It 
+     Unless initialized, algorithm defaults will be used. It 
      creates a unique key pair each time.
 
      Same as generateKeyPair();
@@ -253,7 +253,7 @@
 
   /**
      Generates a KeyPair according the rules for the algorithm.
-     Unless intialized, algorithm defaults will be used. It 
+     Unless initialized, algorithm defaults will be used. It 
      creates a unique key pair each time.
 
      Same as genKeyPair();
--- libjava/java/security/KeyPairGeneratorSpi.java	Tue Jan 22 23:40:30 2002
+++ KeyPairGeneratorSpi.java.new			Wed Feb 19 10:45:50 2003
@@ -71,7 +71,7 @@
      throw InvalidAlgorithmParameterException. By default this
      method just throws UnsupportedOperationException.
 
-     @param params A AlgorithmParameterSpec to intialize with
+     @param params A AlgorithmParameterSpec to initialize with
      @param random A SecureRandom source of randomness  
 
      @throws InvalidAlgorithmParameterException
@@ -84,7 +84,7 @@
 
   /**
      Generates a KeyPair according the rules for the algorithm.
-     Unless intialized, algorithm defaults will be used. It 
+     Unless initialized, algorithm defaults will be used. It 
      creates a unique key pair each time.
 
      @return a key pair
--- libjava/java/io/PrintWriter.java	Tue Jan 22 23:40:14 2002
+++ PrintWriter.java.new		Wed Feb 19 10:39:51 2003
@@ -80,7 +80,7 @@
   protected Writer out;
 
   /**
-   * This method intializes a new <code>PrintWriter</code> object to write
+   * This method initializes a new <code>PrintWriter</code> object to write
    * to the specified output sink.  The form of the constructor does not
    * enable auto-flush functionality.
    *
@@ -93,7 +93,7 @@
   }
 
   /**
-   * This method intializes a new <code>PrintWriter</code> object to write
+   * This method initializes a new <code>PrintWriter</code> object to write
    * to the specified output sink.  This constructor also allows "auto-flush"
    * functionality to be specified where the stream will be flushed after
    * every line is terminated or newline character is written.
--- libjava/java/security/Signer.java	Tue Jan 22 23:40:30 2002
+++ Signer.java.new			Wed Feb 19 10:47:19 2003
@@ -110,7 +110,7 @@
 
      @param pair the keyPair
 
-     @throws InvalidParameterException invalidly intialized key pair
+     @throws InvalidParameterException invalidly initialized key pair
      @throws KeyException another key error
      @throws SecurityException - if the security manager denies 
      access to "getSignerPrivateKey"
--- libjava/lang/ThreadLocal.java	Tue Jan 22 23:40:16 2002
+++ ThreadLocal.java.new		Wed Feb 19 10:41:15 2003
@@ -81,7 +81,7 @@
 	/**
 	 * Trivial container to wrap the stored values.
 	 * Needed to see if the value is null or not yet set.
-	 * If it is not yet set we must call intialValue() once.
+	 * If it is not yet set we must call initialValue() once.
 	 * Package local so InheritableThreadLocal can see it.
 	 */
 	final static class Value {
--- libjava/java/sql/Time.java	Tue Jan 22 23:40:36 2002
+++ Time.java.new		Wed Feb 19 10:51:24 2003
@@ -124,7 +124,7 @@
   * specified time value representing the number of seconds since 
   * Jan 1, 1970 at 12:00 midnight GMT.
   *
-  * @param time The time value to intialize this <code>Time</code> to.
+  * @param time The time value to initialize this <code>Time</code> to.
   */
 public
 Time(long date)
--- libjava/java/sql/Timestamp.java	Tue Jan 22 23:40:36 2002
+++ Timestamp.java.new			Wed Feb 19 10:52:26 2003
@@ -147,7 +147,7 @@
   * specified time value representing the number of seconds since 
   * Jan 1, 1970 at 12:00 midnight GMT.
   *
-  * @param time The time value to intialize this <code>Time</code> to.
+  * @param time The time value to initialize this <code>Time</code> to.
   */
 public
 Timestamp(long date)
--- libiberty/cplus-dem.c	Tue Feb 19 21:02:12 2002
+++ cplus-dem.new.c		Wed Feb 19 10:34:54 2003
@@ -1068,7 +1068,7 @@
 /* This function performs most of what cplus_demangle use to do, but
    to be able to demangle a name with a B, K or n code, we need to
    have a longer term memory of what types have been seen. The original
-   now intializes and cleans up the squangle code info, while internal
+   now initializes and cleans up the squangle code info, while internal
    calls go directly to this routine to avoid resetting that info. */
 
 static char *
--- libjava/defineclass.cc	Mon Dec 10 02:18:30 2001
+++ defineclass.cc.new		Wed Feb 19 10:36:20 2003
@@ -1222,7 +1222,7 @@
   // ignore unknown flags
   method->accflags = accflags & Modifier::ALL_FLAGS;
 
-  // intialize...
+  // initialize...
   method->ncode = 0;
   method->throws = NULL;
   
--- gcc/testsuite/g++.old-deja/g++.other/union2.C	Sun May 28 07:38:02 2000
+++ union2.C.new					Wed Feb 19 10:33:04 2003
@@ -1,4 +1,4 @@
-// Bug: g++ crashed on empty intializers for unions.
+// Bug: g++ crashed on empty initializers for unions.
 // Bug: gcc and g++ didn't zero unions with empty initializers.
 // Submitted by J"orn Rennecke <amylaar at cygnus dot co dot uk>
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]