]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* doc/extend.texi (Function Attributes): Fix a typo.
authorBruno Haible <bruno@clisp.org>
Sun, 2 May 2010 15:25:21 +0000 (15:25 +0000)
committerGerald Pfeifer <gerald@gcc.gnu.org>
Sun, 2 May 2010 15:25:21 +0000 (15:25 +0000)
From-SVN: r158975

gcc/ChangeLog
gcc/doc/extend.texi

index 306fa8b75f4857b52ae27144a00447edddb2e31c..4cb8a344826ce84fd2a3779163c393b2b084f013 100644 (file)
@@ -1,3 +1,7 @@
+2010-05-02  Bruno Haible  <bruno@clisp.org>
+
+       * doc/extend.texi (Function Attributes): Fix a typo.
+
 2010-05-02  Uros Bizjak  <ubizjak@gmail.com>
 
        Revert:
index 97d18e5fa90ca6b51a5cd4b1a6998d9865ed3197..bf748636083bf301fbad9a18ff50b8c2db38c376 100644 (file)
@@ -3503,7 +3503,7 @@ static int x() __attribute__ ((alias ("y")));
 
 A weak reference is an alias that does not by itself require a
 definition to be given for the target symbol.  If the target symbol is
-only referenced through weak references, then the becomes a @code{weak}
+only referenced through weak references, then it becomes a @code{weak}
 undefined symbol.  If it is directly referenced, however, then such
 strong references prevail, and a definition will be required for the
 symbol, not necessarily in the same translation unit.