diff --git a/docs/LangRef.html b/docs/LangRef.html
index a28d92efa1a..066f3a5073a 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -35,7 +35,7 @@
'extern_weak' Linkage
'linkonce_odr' Linkage
'weak_odr' Linkage
- 'externally visible' Linkage
+ 'external' Linkage
'dllimport' Linkage
'dllexport' Linkage
@@ -647,7 +647,7 @@ define i32 @main() { ; i32()*
be merged with equivalent globals. These linkage types are otherwise the
same as their non-odr versions.
- externally visible:
+ external:
If none of the above identifiers are used, the global is externally
visible, meaning that it participates in linkage and can be used to
resolve external symbol references.
@@ -680,8 +680,8 @@ define i32 @main() { ; i32()*
declarations), they are accessible outside of the current module.
It is illegal for a function declaration to have any linkage type
- other than "externally visible", dllimport
- or extern_weak.
+ other than external, dllimport
+ or extern_weak.
Aliases can have only external, internal, weak
or weak_odr linkages.