doc: Fix typo in description of hardbool attribute

gcc/ChangeLog:

	* doc/extend.texi (Common Type Attributes): Fix typo in
	description of hardbool.
This commit is contained in:
Jonathan Wakely 2024-02-01 22:16:36 +00:00
parent a049acabcb
commit cc13e60ba7

View file

@ -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.