diff options
author | Steven G. Kargl <kargls@comcast.net> | 2004-12-29 02:48:27 +0000 |
---|---|---|
committer | Tobias Schlüter <tobi@gcc.gnu.org> | 2004-12-29 03:48:27 +0100 |
commit | 410d1a45e2e91a8764f05c394d31d5aa97f93c51 (patch) | |
tree | f68f0022f0395a845bb34e29793600fb934d9cca /gcc | |
parent | 2f9742c376bb429ad8980f290ab84ea07d3b69e8 (diff) | |
download | gcc-410d1a45e2e91a8764f05c394d31d5aa97f93c51.zip gcc-410d1a45e2e91a8764f05c394d31d5aa97f93c51.tar.gz gcc-410d1a45e2e91a8764f05c394d31d5aa97f93c51.tar.bz2 |
gfortran.h (gfc_case): fix typo in comment.
2004-12-29 Steven G. Kargl <kargls@comcast.net>
* gfortran.h (gfc_case): fix typo in comment.
From-SVN: r92695
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/fortran/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/fortran/gfortran.h | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 7654b04..ae3b9cd 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,7 @@ +2004-12-29 Steven G. Kargl <kargls@comcast.net> + + * gfortran.h (gfc_case): fix typo in comment. + 2004-12-27 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de> * trans-intrinsic.c (gfc_conv_intrinsic_ishft): Change to diff --git a/gcc/fortran/gfortran.h b/gcc/fortran/gfortran.h index 1a28b34..30074f2 100644 --- a/gcc/fortran/gfortran.h +++ b/gcc/fortran/gfortran.h @@ -1173,8 +1173,8 @@ gfc_equiv; a single value. If *high is NULL, the selection is from *low upwards, if *low is NULL the selection is *high downwards. - This structure has separate fields to allow singe and double linked - lists of CASEs the same time. The singe linked list along the NEXT + This structure has separate fields to allow single and double linked + lists of CASEs at the same time. The singe linked list along the NEXT field is a list of cases for a single CASE label. The double linked list along the LEFT/RIGHT fields is used to detect overlap and to build a table of the cases for SELECT constructs with a CHARACTER |