diff mbox series

[Committed] Fix typo in comment.

Message ID 20180108204932.GA29595@troutmask.apl.washington.edu
State New
Headers show
Series [Committed] Fix typo in comment. | expand

Commit Message

Steve Kargl Jan. 8, 2018, 8:49 p.m. UTC
Committed as obvious.
diff mbox series

Patch

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 256351)
+++ ChangeLog	(working copy)
@@ -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: expr.c
===================================================================
--- expr.c	(revision 256351)
+++ expr.c	(working copy)
@@ -3911,7 +3911,7 @@  gfc_check_pointer_assign (gfc_expr *lvalue, gfc_expr *
 
   /* 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 "