doc: Fix typo
authorJoerg Sonnenberger <joerg@bec.de>
Wed, 1 Apr 2020 17:03:24 +0000 (17:03 +0000)
committerSegher Boessenkool <segher@kernel.crashing.org>
Wed, 1 Apr 2020 17:14:51 +0000 (17:14 +0000)
2020-04-01  Joerg Sonnenberger  <joerg@bec.de>

* doc/extend.texi (Common Function Attributes): Fix typo.

gcc/ChangeLog
gcc/doc/extend.texi

index 281401f895cc645364d72af5888822273de76c8e..ba92946b849e6830478a30f66e6ac6f4c58ecb13 100644 (file)
@@ -1,3 +1,7 @@
+2020-04-01  Joerg Sonnenberger  <joerg@bec.de>
+
+       * doc/extend.texi (Common Function Attributes): Fix typo.
+
 2020-04-01  Segher Boessenkool  <segher@kernel.crashing.org>
 
        PR target/94420
index f1f2064df459e31ee8edda59983873945da7589c..bde37482b6e7532d6a91508e52921adb861e3635 100644 (file)
@@ -2545,7 +2545,7 @@ __attribute__ ((access (read_write, 1), access (read_only, 2))) char* strcat (ch
 The @code{write_only} access mode applies to arguments of pointer types
 without the @code{const} qualifier.  It specifies that the pointer to which
 it applies is used to write to the referenced object but not read from it.
-The object refrenced by the pointer need not be initialized.  An example
+The object referenced by the pointer need not be initialized.  An example
 of the use of the @code{write_only} access mode is the first argument to
 the @code{strcpy} function, or the first two arguments to the @code{fgets}
 function.