diff --git a/docs/LangRef.html b/docs/LangRef.html index 7b8d4f8c854..8857590d437 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -552,7 +552,7 @@ All Global Variables and Functions have one of the following types of linkage:
"dllimport" linkage causes the compiler to reference a function or variable via a global pointer to a pointer that is set up by the DLL exporting the symbol. On Microsoft Windows targets, the pointer name is - formed by combining _imp__ and the function or variable name. + formed by combining __imp_ and the function or variable name.
dllexport:
@@ -560,7 +560,7 @@ All Global Variables and Functions have one of the following types of linkage:
"dllexport" linkage causes the compiler to provide a global pointer to a pointer in a DLL, so that it can be referenced with the dllimport attribute. On Microsoft Windows targets, the pointer - name is formed by combining _imp__ and the function or variable + name is formed by combining __imp_ and the function or variable name.