]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
2010-05-31 Steven G. Kargl <kargl@gcc.gnu.org>
authorkargl <kargl@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 31 May 2010 20:29:05 +0000 (20:29 +0000)
committerkargl <kargl@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 31 May 2010 20:29:05 +0000 (20:29 +0000)
* fortran/gfortran.texi:  Fix typos in description of variable-format-
expressions.

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

gcc/fortran/ChangeLog
gcc/fortran/gfortran.texi

index e798efeea1122e0f1340dfb6aba548f103b6108b..66bdbe66d21e34058eab9aa1cbbfc6fdff8d543a 100644 (file)
@@ -1,3 +1,8 @@
+2010-05-31  Steven G. Kargl  <kargl@gcc.gnu.org>
+
+       * fortran/gfortran.texi:  Fix typos in description of variable-format-
+       expressions.
+
 2010-05-31  Thomas Koenig  <tkoenig@gcc.gnu.org>
 
        PR fortran/36928
index 989a926cb86f239ca79e069a3382bcb5e091b22c..a7f6fbac220cbb21eb9708d8eb64e87a98e2c9f7 100644 (file)
@@ -1872,12 +1872,12 @@ with the following:
 
 @smallexample
 c     Variable declaration
-      CHARACTER(LEN=20) F
+      CHARACTER(LEN=20) FMT
 c     
 c     Other code here...
 c
       WRITE(FMT,'("(I", I0, ")")') N+1
-      WRITE(6,FM) INT1
+      WRITE(6,FMT) INT1
 @end smallexample
 
 @noindent