Update 03-Style.md

Correct spelling error in include guard
This commit is contained in:
Jason Turner
2015-05-18 10:26:01 -06:00
parent a875da7f9b
commit e431705ccb

View File

@@ -103,7 +103,7 @@ Header files must contain an distinctly named include guard to avoid problems wi
```cpp ```cpp
#ifndef MYPROJECT_MYCLASS_HPP #ifndef MYPROJECT_MYCLASS_HPP
#define MYPROEJCT_MYCLASS_HPP #define MYPROJECT_MYCLASS_HPP
namespace MyProject { namespace MyProject {
class MyClass { class MyClass {