Index: ppapi/cpp/logging.h |
diff --git a/ppapi/cpp/logging.h b/ppapi/cpp/logging.h |
index 97479a276130afe69eb427b0969a197bebcabd5a..d0a4f5b29a5635973571a9638900251379c56a41 100644 |
--- a/ppapi/cpp/logging.h |
+++ b/ppapi/cpp/logging.h |
@@ -20,7 +20,7 @@ |
/// |
/// <strong>Example:</strong> |
/// |
-/// <code> |
+/// @code |
/// if (!pointer) { |
/// // Pointer wasn't valid! This shouldn't happen. |
/// PP_NOTREACHED(); |
@@ -28,7 +28,7 @@ |
/// } |
/// // Do stuff to the pointer, since you know it's valid. |
/// pointer->DoSomething(); |
-/// </code> |
+/// @endcode |
#define PP_NOTREACHED() assert(false) |
#endif // PPAPI_CPP_LOGGING_H_ |