aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2024-02-01 22:16:36 +0000
committerJonathan Wakely <jwakely@redhat.com>2024-02-02 10:30:35 +0000
commitcc13e60ba74a092ddc3a9492c721afa766118375 (patch)
tree3198e95502b47f1c1f5254b44d7d119d53d6dc3f
parenta049acabcb11d6ae9e54c81e5835e4f3372e80fb (diff)
downloadgcc-cc13e60ba74a092ddc3a9492c721afa766118375.zip
gcc-cc13e60ba74a092ddc3a9492c721afa766118375.tar.gz
gcc-cc13e60ba74a092ddc3a9492c721afa766118375.tar.bz2
doc: Fix typo in description of hardbool attribute
gcc/ChangeLog: * doc/extend.texi (Common Type Attributes): Fix typo in description of hardbool.
-rw-r--r--gcc/doc/extend.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index 142e41a..2b8ba19 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -8960,7 +8960,7 @@ This attribute may only be applied to integral types in C, to introduce
hardened boolean types. It turns the integral type into a boolean-like
type with the same size and precision, that uses the specified values as
representations for @code{false} and @code{true}. Underneath, it is
-actually an enumerate type, but its observable behavior is like that of
+actually an enumerated type, but its observable behavior is like that of
@code{_Bool}, except for the strict internal representations, verified
by runtime checks.