]> gcc.gnu.org Git - gcc.git/commitdiff
gfortran.texi: Fix typos.
authorKazu Hirata <kazu@codesourcery.com>
Sat, 8 Apr 2006 14:31:12 +0000 (14:31 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Sat, 8 Apr 2006 14:31:12 +0000 (14:31 +0000)
* gfortran.texi: Fix typos.  Follow spelling conventions.
* resolve.c, trans-expr.c, trans-stmt.c: Fix comment typos.
Follow spelling conventions.

From-SVN: r112780

gcc/fortran/ChangeLog
gcc/fortran/gfortran.texi
gcc/fortran/resolve.c
gcc/fortran/trans-expr.c
gcc/fortran/trans-stmt.c

index e6db2efe197a99cd389dbb54920f38c53ff99b7a..c236ff17daf5e8624ea6533167fe3983b5c67e52 100644 (file)
@@ -1,3 +1,9 @@
+2006-04-08  Kazu Hirata  <kazu@codesourcery.com>
+
+       * gfortran.texi: Fix typos.  Follow spelling conventions.
+       * resolve.c, trans-expr.c, trans-stmt.c: Fix comment typos.
+       Follow spelling conventions.
+
 2006-04-05  Roger Sayle  <roger@eyesopen.com>
 
        * dependency.c (get_no_elements): Delete function.
index 89c7770c0ac3282ac07b647006a850eccad98d22..07edb8a6b162a34a7251400b88d6320659b0fcb1 100644 (file)
@@ -548,7 +548,7 @@ Environment variable forcing standard output to be line buffered (unix).
 @chapter Runtime:  Influencing runtime behavior with environment variables
 @cindex Runtime
 
-The behaviour of the @command{gfortran} can be influenced by
+The behavior of the @command{gfortran} can be influenced by
 environment variables.
 
 Malformed environment variables are silently ignored.
@@ -610,7 +610,7 @@ this is also missing, the default is @file{/tmp}.
 This environment variable controls wether all output is unbuffered.
 If the first letter is @samp{y}, @samp{Y} or @samp{1}, all output is
 unbuffered. This will slow down large writes.  If the first letter is
-@samp{n}, @samp{N}  or @samp{0}, output is bufferred.  This is the
+@samp{n}, @samp{N}  or @samp{0}, output is buffered.  This is the
 default.
 
 @node GFORTRAN_SHOW_LOCUS
@@ -626,7 +626,7 @@ for runtime errors. The default is to print the location.
 
 If the first letter is @samp{y}, @samp{Y} or @samp{1},
 a plus sign is printed
-where permitted by the Fortran standard.  If the first lettter
+where permitted by the Fortran standard.  If the first letter
 is @samp{n}, @samp{N} or @samp{0}, a plus sign is not printed
 in most cases. Default is not to print plus signs.
 
index 4831d799d709a214b1290cfc0660f7fb1f539e27..bde11a5c5959f62294a09b073728e87ed45584e0 100644 (file)
@@ -701,7 +701,7 @@ procedure_kind (gfc_symbol * sym)
 }
 
 /* Check references to assumed size arrays.  The flag need_full_assumed_size
-   is non-zero when matching actual arguments.  */
+   is nonzero when matching actual arguments.  */
 
 static int need_full_assumed_size = 0;
 
@@ -1342,7 +1342,7 @@ resolve_function (gfc_expr * expr)
             && expr->value.function.isym->generic_id != GFC_ISYM_PRESENT)
     {
       /* Array instrinsics must also have the last upper bound of an
-        asumed size array argument.  UBOUND and SIZE have to be
+        assumed size array argument.  UBOUND and SIZE have to be
         excluded from the check if the second argument is anything
         than a constant.  */
       int inquiry;
@@ -4843,7 +4843,7 @@ resolve_fl_procedure (gfc_symbol *sym, int mp_flag)
 
   /* Ensure that derived type for are not of a private type.  Internal
      module procedures are excluded by 2.2.3.3 - ie. they are not
-     externally accessible and can access all the objects accesible in
+     externally accessible and can access all the objects accessible in
      the host. */
   if (!(sym->ns->parent
            && sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
index 1e1802ed205ab1441c898c674b240d5bdd18ca20..81e0a7c5d2154913ec43f2a5c7d82398f92a7a1d 100644 (file)
@@ -1712,7 +1712,7 @@ gfc_conv_aliased_arg (gfc_se * parmse, gfc_expr * expr, int g77)
      temporary array has lbounds of zero and strides of one in all
      dimensions, so this is very simple.  The offset is only computed
      outside the innermost loop, so the overall transfer could be
-     optimised further.  */
+     optimized further.  */
   info = &rse.ss->data.info;
 
   tmp_index = gfc_index_zero_node;
index b3141ca84c740c010dde23b58188a12556dc854d..6480a195bedf63d3cbf7b39e8d94b8cd3ebe3594 100644 (file)
@@ -2650,7 +2650,7 @@ gfc_evaluate_where_mask (gfc_expr * me, forall_info * nested_forall_info,
       gfc_conv_expr (&rse, me);
     }
 
-  /* Variable to evalate mask condition.  */
+  /* Variable to evaluate mask condition.  */
   cond = gfc_create_var (mask_type, "cond");
   if (mask && (cmask || pmask))
     mtmp = gfc_create_var (mask_type, "mask");
This page took 0.083257 seconds and 5 git commands to generate.