[Patch, Fortran, committed] Fix some typos in .texi

2012-02-17 Thread Tobias Burnus

Committed as Rev. 184332.

Tobias
Index: gfortran.texi
===
--- gfortran.texi	(revision 184330)
+++ gfortran.texi	(working copy)
@@ -795,7 +795,7 @@ override type-bound procedures or to have deferred
 
 @item Polymorphic entities (``@code{CLASS}'') for derived types -- including
 @code{SAME_TYPE_AS}, @code{EXTENDS_TYPE_OF} and @code{SELECT TYPE}.
-Note that unlimited polymophism is currently not supported.
+Note that unlimited polymorphism is currently not supported.
 
 @item Generic interface names, which have the same name as derived types,
 are now supported. This allows one to write constructor functions.  Note
@@ -835,7 +835,7 @@ association status not the value of the pointer ta
 @item Intrinsics @code{command_argument_count}, @code{get_command},
 @code{get_command_argument}, and @code{get_environment_variable}.
 
-@item Support for unicode characters (ISO 10646) and UTF-8, including
+@item Support for Unicode characters (ISO 10646) and UTF-8, including
 the @code{SELECTED_CHAR_KIND} and @code{NEW_LINE} intrinsic functions.
 
 @item Support for binary, octal and hexadecimal (BOZ) constants in the
@@ -1521,7 +1521,7 @@ of the @code{READ} statement, and the output item
 
 GNU Fortran accepts real literal constants with an exponent-letter
 of @code{Q}, for example, @code{1.23Q45}.  The constant is interpreted
-as a @code{REAL(16)} entity on targets that suppports this type.  If
+as a @code{REAL(16)} entity on targets that supports this type.  If
 the target does not support @code{REAL(16)} but has a @code{REAL(10)}
 type, then the real-literal-constant will be interpreted as a
 @code{REAL(10)} entity.  In the absence of @code{REAL(16)} and
Index: ChangeLog
===
--- ChangeLog	(revision 184331)
+++ ChangeLog	(working copy)
@@ -1,4 +1,10 @@
 2012-02-17  Tobias Burnus  bur...@net-b.de
+
+	* gfortran.texi (Status): Fix typos.
+	* invoke.texi (ffixed-form, fstack-arrays): Spell Fortran with
+	a majuscule.
+
+2012-02-17  Tobias Burnus  bur...@net-b.de
 	Roland Stigge  sti...@antcom.de
 
 	PR translation/52232
Index: invoke.texi
===
--- invoke.texi	(revision 184330)
+++ invoke.texi	(working copy)
@@ -204,7 +204,7 @@ accepted by the compiler:
 @itemx -ffixed-form
 @opindex @code{ffree-form}
 @opindex @code{fno-fixed-form}
-@cindex options, fortran dialect
+@cindex options, Fortran dialect
 @cindex file format, free
 @cindex file format, fixed
 Specify the layout used by the source file.  The free form layout
@@ -1425,7 +1425,7 @@ The default value for @var{n} is 32768.
 
 @item -fstack-arrays
 @opindex @code{fstack-arrays}
-Adding this option will make the fortran compiler put all local arrays,
+Adding this option will make the Fortran compiler put all local arrays,
 even those of unknown size onto stack memory.  If your program uses very
 large local arrays it is possible that you will have to extend your runtime
 limits for stack memory on some operating systems. This flag is enabled


Re: [Patch, Fortran, committed] Fix some typos in .texi

2012-02-17 Thread Tobias Burnus

On 02/17/2012 12:15 PM, Tobias Burnus wrote:

Committed as Rev. 184332.


I just saw that one line didn't only have a typo but also a grammar bug. 
Fix that one now as attached. (Rev. 184333.)


Tobias
Index: gfortran.texi
===
--- gfortran.texi	(revision 184332)
+++ gfortran.texi	(working copy)
@@ -1521,7 +1521,7 @@ of the @code{READ} statement, and the output item
 
 GNU Fortran accepts real literal constants with an exponent-letter
 of @code{Q}, for example, @code{1.23Q45}.  The constant is interpreted
-as a @code{REAL(16)} entity on targets that supports this type.  If
+as a @code{REAL(16)} entity on targets that support this type.  If
 the target does not support @code{REAL(16)} but has a @code{REAL(10)}
 type, then the real-literal-constant will be interpreted as a
 @code{REAL(10)} entity.  In the absence of @code{REAL(16)} and
Index: ChangeLog
===
--- ChangeLog	(revision 184332)
+++ ChangeLog	(working copy)
@@ -1,5 +1,9 @@
 2012-02-17  Tobias Burnus  bur...@net-b.de
 
+	* gfortran.texi (Q exponent-letter): Fix grammar.
+
+2012-02-17  Tobias Burnus  bur...@net-b.de
+
 	* gfortran.texi (Status): Fix typos.
 	* invoke.texi (ffixed-form, fstack-arrays): Spell Fortran with
 	a majuscule.