fix wrong doxygen script
[platform/framework/native/appfw.git] / inc / FBaseLog.h
index dce4a69..9c06eeb 100644 (file)
@@ -98,7 +98,7 @@ extern "C" {
  * The following example demonstrates how to use the AppLog macro.
  *
  * @code
- *     Bool
+ *     bool
  *     MyEngine::Init(int value)
  *     {
  *        AppLog("Initialization successful.");
@@ -122,7 +122,7 @@ extern "C" {
  * The following example demonstrates how to use the AppLogDebug macro.
  *
  * @code
- *     Bool
+ *     bool
  *     MyEngine::Init(int value)
  *     {
  *        AppLogDebug("Invoked with value: %d", value);
@@ -148,7 +148,7 @@ extern "C" {
  * The following example demonstrates how to use the AppLogException macro.
  *
  * @code
- *     Bool
+ *     bool
  *     MyEngine::Init(int value)
  *     {
  *        AppLogDebug("Invoked with value: %d", value);
@@ -225,7 +225,7 @@ extern "C" {
  * The following example demonstrates how to use the AppLogIf macro.
  *
  * @code
- *     Bool
+ *     bool
  *     MyEngine::Init(int value)
  *     {
  *        AppLogIf(value !=0, "Invoked with value: %d", value);
@@ -249,7 +249,7 @@ extern "C" {
  * The following example demonstrates how to use the AppLogDebugIf macro.
  *
  * @code
- *     Bool
+ *     bool
  *     MyEngine::Init(int value)
  *     {
  *        AppLogDebugIf(value !=0, "Invoked with value: %d", value);
@@ -273,7 +273,7 @@ extern "C" {
  * The following example demonstrates how to use the AppLogExceptionIf macro.
  *
  * @code
- *     Bool
+ *     bool
  *     MyEngine::Init(int value)
  *     {
  *        int status;
@@ -299,7 +299,7 @@ extern "C" {
  * The following example demonstrates how to use the AppLogTag macro.
  *
  * @code
- *     Bool
+ *     bool
  *     MyEngine::Init(int value)
  *     {
  *        int status;
@@ -325,7 +325,7 @@ extern "C" {
  * The following example demonstrates how to use the AppLogDebugTag macro.
  *
   * @code
- *     Bool
+ *     bool
  *     MyEngine::Init(int value)
  *     {
  *        AppLogDebugTag("MyTag", "Invoked with value: %d", value);
@@ -352,7 +352,7 @@ extern "C" {
  * The following example demonstrates how to use the AppLogExceptionTag macro.
  *
  * @code
- *     Bool
+ *     bool
  *     MyEngine::Init(int value)
  *     {
  *        AppLogDebug("Invoked with value: %d", value);