doc: Fix typo in description of hardbool attribute

Message ID 20240201221810.2181399-1-jwakely@redhat.com
State Unresolved
Headers
Series doc: Fix typo in description of hardbool attribute |

Checks

Context Check Description
snail/gcc-patch-check warning Git am fail log

Commit Message

Jonathan Wakely Feb. 1, 2024, 10:17 p.m. UTC
  I'm going to push this as obvious.

-- >8 --

gcc/ChangeLog:

	* doc/extend.texi (Common Type Attributes): Fix typo in
	description of hardbool.
---
 gcc/doc/extend.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index 142e41ab8fb..2b8ba1949bf 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.