[llvm] r296969 - Fix a typo. Patch by fcrick on github https://github.com/llvm-mirror/llvm/pull/23

Sylvestre Ledru via llvm-commits llvm-commits at lists.llvm.org
Sat Mar 4 06:01:38 PST 2017


Author: sylvestre
Date: Sat Mar  4 08:01:38 2017
New Revision: 296969

URL: http://llvm.org/viewvc/llvm-project?rev=296969&view=rev
Log:
Fix a typo. Patch by fcrick on github https://github.com/llvm-mirror/llvm/pull/23


Modified:
    llvm/trunk/docs/LangRef.rst

Modified: llvm/trunk/docs/LangRef.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.rst?rev=296969&r1=296968&r2=296969&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.rst (original)
+++ llvm/trunk/docs/LangRef.rst Sat Mar  4 08:01:38 2017
@@ -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.




More information about the llvm-commits mailing list