aboutsummaryrefslogtreecommitdiff
path: root/gcc/doc
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2010-05-02 15:25:21 +0000
committerGerald Pfeifer <gerald@gcc.gnu.org>2010-05-02 15:25:21 +0000
commit4896c7b82125fb7bd2f7e3ee3365441653979b47 (patch)
tree3616526ff4912d53125b49499ee1c57252944566 /gcc/doc
parent0d6d8e000bce2ada541287721236fd4b6cb0db9e (diff)
downloadgcc-4896c7b82125fb7bd2f7e3ee3365441653979b47.zip
gcc-4896c7b82125fb7bd2f7e3ee3365441653979b47.tar.gz
gcc-4896c7b82125fb7bd2f7e3ee3365441653979b47.tar.bz2
* doc/extend.texi (Function Attributes): Fix a typo.
From-SVN: r158975
Diffstat (limited to 'gcc/doc')
-rw-r--r--gcc/doc/extend.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index 97d18e5..bf74863 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -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.