doc: Fix a typo in the documentation of the copy attribute
authorZackery Spytz <zspytz@gmail.com>
Wed, 1 Apr 2020 17:06:16 +0000 (18:06 +0100)
committerRichard Sandiford <richard.sandiford@arm.com>
Wed, 1 Apr 2020 17:09:07 +0000 (18:09 +0100)
2020-04-01  Zackery Spytz  <zspytz@gmail.com>

gcc/
* doc/extend.texi: Fix a typo in the documentation of the
copy function attribute.

gcc/ChangeLog
gcc/doc/extend.texi

index 654356c8dc8f08fb53e0e9b5c39e756e68326193..6313be4f8ab4d04d1cab2cd8bc3c45415fd5b3cb 100644 (file)
@@ -1,3 +1,8 @@
+2020-04-01  Zackery Spytz  <zspytz@gmail.com>
+
+       * doc/extend.texi: Fix a typo in the documentation of the
+       copy function attribute.
+
 2020-04-01  Jakub Jelinek  <jakub@redhat.com>
 
        PR middle-end/94423
index e0e7f540c219165e1b353f0fbc5dbc7f9c9d0f94..f1f2064df459e31ee8edda59983873945da7589c 100644 (file)
@@ -2817,7 +2817,7 @@ the same type as the target function.  As a result of the @code{copy}
 attribute the alias also shares the same attributes as the target.
 
 @smallexample
-#define StrongAlias(TagetFunc, AliasDecl)   \
+#define StrongAlias(TargetFunc, AliasDecl)  \
   extern __typeof__ (TargetFunc) AliasDecl  \
     __attribute__ ((alias (#TargetFunc), copy (TargetFunc)));