diff mbox series

[avr,applied] Fix a typo in built-in documentation

Message ID 36dab1d1-77cf-4a65-afbf-4cad8ba4a0f3@gjlay.de
State New
Headers show
Series [avr,applied] Fix a typo in built-in documentation | expand

Commit Message

Georg-Johann Lay Aug. 8, 2024, 4:44 p.m. UTC
Applied as obvious.

Johann

--


     AVR: Fix a typo in __builtin_avr_mask1 documentation.

     gcc/
             * doc/extend.texi (AVR Built-in Functions) <mask1>: Fix a typo.

  @example
diff mbox series

Patch

diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index 89fe5db7aed..ae1ada3cdf8 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -17052,7 +17052,7 @@  __builtin_avr_insert_bits (0x01234567, bits, 0);
  @defbuiltin{uint8_t __builtin_avr_mask1 (uint8_t @var{mask}, uint8_t 
@var{offs})}
  Rotate the 8-bit constant value @var{mask} by an offset of @var{offs},
  where @var{mask} is in @{ 0x01, 0xfe, 0x7f, 0x80 @}.
-This built-in can be use as an alternative to 8-bit expressions like
+This built-in can be used as an alternative to 8-bit expressions like
  @code{1 << offs} when their computation consumes too much
  time, and @var{offs} is known to be in the range 0@dots{}7.