expr.c (gfc_check_pointer_assign): Fix typo in comment.
authorSteven G. Kargl <kargl@gcc.gnu.org>
Mon, 8 Jan 2018 20:48:26 +0000 (20:48 +0000)
committerSteven G. Kargl <kargl@gcc.gnu.org>
Mon, 8 Jan 2018 20:48:26 +0000 (20:48 +0000)
2018-01-08  Steven G. Kargl  <kargl@gcc.gnu.org>

* expr.c (gfc_check_pointer_assign): Fix typo in comment.

From-SVN: r256352

gcc/fortran/ChangeLog
gcc/fortran/expr.c

index d150f67bcfe1d6f961cbca1b79da38aa6f5c3747..adb82609d9d4cb1701d27a5e6a77de1af47815cf 100644 (file)
@@ -1,3 +1,7 @@
+2018-01-08  Steven G. Kargl  <kargl@gcc.gnu.org>
+
+       * expr.c (gfc_check_pointer_assign): Fix typo in comment.
+
 2018-01-08  Paul Thomas  <pault@gcc.gnu.org>
 
        PR fortran/83611
index a8f0f0f901608210eb64e2850be6e3d267e31d96..5be8da18b05dbb833da369df3cd6dc03fd28e9cb 100644 (file)
@@ -3911,7 +3911,7 @@ gfc_check_pointer_assign (gfc_expr *lvalue, gfc_expr *rvalue)
 
   /* Error for assignments of contiguous pointers to targets which is not
      contiguous.  Be lenient in the definition of what counts as
-     congiguous.  */
+     contiguous.  */
 
   if (lhs_attr.contiguous && !gfc_is_simply_contiguous (rvalue, false, true))
     gfc_error ("Assignment to contiguous pointer from non-contiguous "