OSDN Git Service

* dependency.c, resolve.c, trans-array.c: Fix comment typos.
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 16 Dec 2005 05:49:45 +0000 (05:49 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 16 Dec 2005 05:49:45 +0000 (05:49 +0000)
* gfortran.texi: Fix typos.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@108624 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/fortran/ChangeLog
gcc/fortran/dependency.c
gcc/fortran/gfortran.texi
gcc/fortran/resolve.c
gcc/fortran/trans-array.c

index 0d364d4..94980f8 100644 (file)
@@ -1,3 +1,8 @@
+2005-12-16  Kazu Hirata  <kazu@codesourcery.com>
+
+       * dependency.c, resolve.c, trans-array.c: Fix comment typos.
+       * gfortran.texi: Fix typos.
+
 2005-12-14  Erik Edelmann  <eedelman@gcc.gnu.org>
 
        PR fortran/18197
index d3a486e..4a79560 100644 (file)
@@ -176,7 +176,7 @@ gfc_is_same_range (gfc_array_ref * ar1, gfc_array_ref * ar2, int n, int def)
 
 
 /* Some array-returning intrinsics can be implemented by reusing the
-   data from one of the array arguments.  For example, TRANPOSE does
+   data from one of the array arguments.  For example, TRANSPOSE does
    not necessarily need to allocate new data: it can be implemented
    by copying the original array's descriptor and simply swapping the
    two dimension specifications.
index ea3ac24..b4f1bf9 100644 (file)
@@ -962,7 +962,7 @@ The value of the conversion can be queried by using
 
 @code{CONVERT} works between big- and little-endian for
 @code{INTEGER} values of all supported kinds and for @code{REAL}
-on IEEE sytems of kinds 4 and 8.  Conversion between different
+on IEEE systems of kinds 4 and 8.  Conversion between different
 ``extended double'' types on different architectures such as
 m68k and x86_64, which gfortran
 supports as @code{REAL(KIND=10)} will probably not work.
index d9f0e77..de2da63 100644 (file)
@@ -288,7 +288,7 @@ resolve_contained_fntype (gfc_symbol * sym, gfc_namespace * ns)
 
   /*Fortran 95 Draft Standard, page 51, Section 5.1.1.5, on the Character type,
     lists the only ways a character length value of * can be used: dummy arguments
-    of proceedures, named constants, and function results in external functions.
+    of procedures, named constants, and function results in external functions.
     Internal function results are not on that list; ergo, not permitted.  */
 
   if (sym->ts.type == BT_CHARACTER)
index 45c8351..a9981a3 100644 (file)
@@ -673,7 +673,7 @@ gfc_trans_allocate_temp_array (stmtblock_t * pre, stmtblock_t * post,
 }
 
 
-/* Generate code to tranpose array EXPR by creating a new descriptor
+/* Generate code to transpose array EXPR by creating a new descriptor
    in which the dimension specifications have been reversed.  */
 
 void