From: Sylvestre Ledru Date: Sat, 4 Mar 2017 14:01:38 +0000 (+0000) Subject: Fix a typo. Patch by fcrick on github https://github.com/llvm-mirror/llvm/pull/23 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f15590a7fb3ef6d1a159e8c80c36d43bfe79f01f;p=llvm Fix a typo. Patch by fcrick on github https://github.com/llvm-mirror/llvm/pull/23 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@296969 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LangRef.rst b/docs/LangRef.rst index edf95d9b10e..9bf70c8afcd 100644 --- a/docs/LangRef.rst +++ b/docs/LangRef.rst @@ -195,7 +195,7 @@ linkage: ``private`` Global values with "``private``" linkage are only directly accessible by objects in the current module. In particular, linking - code into a module with an private global value may cause the + code into a module with a private global value may cause the private to be renamed as necessary to avoid collisions. Because the symbol is private to the module, all references can be updated. This doesn't show up in any symbol table in the object file.