Fortran manual: fix invalid BOZ 'ABC'X example to be X'ABC'.

Message ID 20211121104751.3190936-1-slyich@gmail.com
State New
Headers
Series Fortran manual: fix invalid BOZ 'ABC'X example to be X'ABC'. |

Commit Message

Sergei Trofimovich Nov. 21, 2021, 10:47 a.m. UTC
  From: Sergei Trofimovich <siarheit@google.com>

	gcc/fortran/
	* gfortran.texi (BOZ literal constants): fix invalid BOZ 'ABC'X
	example to be X'ABC'.
---
 gcc/fortran/gfortran.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/gcc/fortran/gfortran.texi b/gcc/fortran/gfortran.texi
index 326470964b0..f01a49c47cc 100644
--- a/gcc/fortran/gfortran.texi
+++ b/gcc/fortran/gfortran.texi
@@ -1465,7 +1465,7 @@  dependent.  Gfortran interprets the sign bit as a user would expect.
 As a deprecated extension, GNU Fortran allows hexadecimal BOZ literal
 constants to be specified using the @code{X} prefix.  That the BOZ literal
 constant can also be specified by adding a suffix to the string, for
-example, @code{Z'ABC'} and @code{'ABC'X} are equivalent.  Additionally,
+example, @code{Z'ABC'} and @code{X'ABC'} are equivalent.  Additionally,
 as extension, BOZ literals are permitted in some contexts outside of
 @code{DATA} and the intrinsic functions listed in the Fortran standard.
 Use @option{-fallow-invalid-boz} to enable the extension.