Commit 87187539 by Steven G. Kargl

gfortran.texi: Fix typos in description of variable-format- expressions.

2010-05-31  Steven G. Kargl  <kargl@gcc.gnu.org>

	* fortran/gfortran.texi:  Fix typos in description of variable-format-
	expressions.

From-SVN: r160086
parent e2113565
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> 2010-05-31 Thomas Koenig <tkoenig@gcc.gnu.org>
PR fortran/36928 PR fortran/36928
......
...@@ -1872,12 +1872,12 @@ with the following: ...@@ -1872,12 +1872,12 @@ with the following:
@smallexample @smallexample
c Variable declaration c Variable declaration
CHARACTER(LEN=20) F CHARACTER(LEN=20) FMT
c c
c Other code here... c Other code here...
c c
WRITE(FMT,'("(I", I0, ")")') N+1 WRITE(FMT,'("(I", I0, ")")') N+1
WRITE(6,FM) INT1 WRITE(6,FMT) INT1
@end smallexample @end smallexample
@noindent @noindent
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment