This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Patch, fortran, doc, committed] Fix DATE_AND_TIME example


Hello,

a format string in the example for DATE_AND_TIME contained a syntax
error. Committed as obvious.

2013-09-27  Janne Blomqvist  <jb@gcc.gnu.org>

    * intrinsic.texi (DATE_AND_TIME): Fix example.


Index: intrinsic.texi
===================================================================
--- intrinsic.texi      (revision 202983)
+++ intrinsic.texi      (working copy)
@@ -3461,7 +3461,7 @@ program test_time_and_date
     call date_and_time(TIME=time)
     call date_and_time(VALUES=values)
     print '(a,2x,a,2x,a)', date, time, zone
-    print '(8i5))', values
+    print '(8i5)', values
 end program test_time_and_date
 @end smallexample


-- 
Janne Blomqvist


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]