Skip to content

Commit 7e38a92

Browse files
authored
Add missing # in include
1 parent 4249394 commit 7e38a92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The document is hosted on https://github.com/mortennobel/cpp-cheatsheet. Any com
1515
// Comment to end of line
1616
/* Multi-line comment */
1717
#include <stdio.h> // Insert standard header file
18-
include "myfile.h" // Insert file in current directory
18+
#include "myfile.h" // Insert file in current directory
1919
#define X some text // Replace X with some text
2020
#define F(a,b) a+b // Replace F(1,2) with 1+2
2121
#define X \

0 commit comments

Comments
 (0)