diff --git a/docs/LangRef.html b/docs/LangRef.html
index 16a23f5809a..e7fc5396a8a 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -424,23 +424,26 @@ All Global Variables and Functions have one of the following types of linkage:
an internal global value may cause the internal to be renamed as necessary to
avoid collisions. Because the symbol is internal to the module, all
references can be updated. This corresponds to the notion of the
- 'static' keyword in C, or the idea of "anonymous namespaces" in C++.
+ 'static' keyword in C.
linkonce:
- "linkonce" linkage is similar to internal linkage, with
- the twist that linking together two modules defining the same
- linkonce globals will cause one of the globals to be discarded. This
- is typically used to implement inline functions. Unreferenced
- linkonce globals are allowed to be discarded.
+ Globals with "linkonce" linkage are merged with other globals of
+ the same name when linkage occurs. This is typically used to implement
+ inline functions, templates, or other code which must be generated in each
+ translation unit that uses it. Unreferenced linkonce globals are
+ allowed to be discarded.
weak:
"weak" linkage is exactly the same as linkonce linkage,
except that unreferenced weak globals may not be discarded. This is
- used to implement constructs in C such as "int X;" at global scope.
+ used for globals that may be emitted in multiple translation units, but that
+ are not guaranteed to be emitted into every translation unit that uses them.
+ One example of this are common globals in C, such as "int X;" at
+ global scope.
appending: