Skip to content

Commit 0209e08

Browse files
authored
Merge pull request #1139 from MicrosoftDocs/FromPublicMasterBranch
Confirm merge from FromPublicMasterBranch to master to sync with https://github.com/MicrosoftDocs/cpp-docs (branch master)
2 parents 0a673a1 + b0d6777 commit 0209e08

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/linux/cmake-linux-project.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ To get started, choose **File** > **Open** > **Folder** from the main menu or el
3030
The following example shows a simple CMakeLists.txt file and .cpp file:
3131

3232
```cpp
33-
// Hello.cpp
33+
// hello.cpp
3434

35-
#include <iostream>;
35+
#include <iostream>
3636

3737
int main(int argc, char* argv[])
3838
{
39-
std::cout << "Hello" << std::endl;
39+
std::cout << "Hello from Linux CMake" << std::endl;
4040
}
4141
```
4242

0 commit comments

Comments
 (0)