diff options
-rw-r--r-- | ipc/ipc_message_macros.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipc/ipc_message_macros.h b/ipc/ipc_message_macros.h index 38aa740..8be5c53 100644 --- a/ipc/ipc_message_macros.h +++ b/ipc/ipc_message_macros.h @@ -113,8 +113,8 @@ // class_some_other_class; // Another incomplete class declaration // #endif // SOME_GUARD_MACRO // #ifdef IPC_MESSAGE_IMPL -// #inlcude "path/to/some_class.h" // Full class declaration -// #inlcude "path/to/some_other_class.h" // Full class declaration +// #include "path/to/some_class.h" // Full class declaration +// #include "path/to/some_other_class.h" // Full class declaration // #endif // IPC_MESSAGE_IMPL // (.. IPC macros using some_class and some_other_class ...) // |