Skip to content

Commit 95dd366

Browse files
author
van9petryk
authored
Update definitions-and-declarations-cpp.md
Fixed typing error
1 parent 7ee54db commit 95dd366

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/cpp/definitions-and-declarations-cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ __declspec( dllexport ) int i = 10; // Okay--export definition
4343
#define DllImport __declspec( dllimport )
4444
#define DllExport __declspec( dllexport )
4545
46-
extern DllImport int k; // These are both correct and imply a
46+
extern DllExport int k; // These are both correct and imply a
4747
DllImport int j; // declaration.
4848
```
4949

@@ -71,4 +71,4 @@ void func() {
7171
**END Microsoft Specific**
7272

7373
## See Also
74-
[dllexport, dllimport](../cpp/dllexport-dllimport.md)
74+
[dllexport, dllimport](../cpp/dllexport-dllimport.md)

0 commit comments

Comments
 (0)