Fix typo 00/256800/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Tue, 13 Apr 2021 07:24:01 +0000 (16:24 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Tue, 13 Apr 2021 07:31:17 +0000 (16:31 +0900)
Change-Id: Ib611c2f20ffe5efc745c723989fe709ad7b4516b
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
scl/scldebug.cpp
scl/scldebug.h

index 16b0edb..3f947f6 100644 (file)
 
 #ifdef SCL_DEBUG_ON
 
-/* Measure elapased time */
+/* Measure elapsed time */
 static float
 _SCL_DEBUG_ELAPSED_TIME(const char* str, struct timeval t0, struct timeval t1);
 
-/* Measure elapased time */
+/* Measure elapsed time */
 float SCL_DEBUG_TIME(const char* fileStr, int line, const char* str)
 {
     float etime = 0.0;
@@ -53,7 +53,7 @@ float SCL_DEBUG_TIME(const char* fileStr, int line, const char* str)
     return etime;
 }
 
-/* Measure elapased time */
+/* Measure elapsed time */
 static float _SCL_DEBUG_ELAPSED_TIME(const char* str, struct timeval t0, struct timeval t1)
 {
     float etime;
@@ -62,7 +62,7 @@ static float _SCL_DEBUG_ELAPSED_TIME(const char* str, struct timeval t0, struct
     return etime;
 }
 
-/* Measure elapased time */
+/* Measure elapsed time */
 float SCL_DEBUG_ELAPSED_TIME(const char* fileStr, int line, const char* str, int type)
 {
     static struct timeval s_tv1;
index b8b527f..e32e2f0 100644 (file)
@@ -64,11 +64,11 @@ extern "C"
 
 #define scl_assert_return_null scl_assert_return_false
 
-    /* Measure elapased time */
+    /* Measure elapsed time */
     float
     SCL_DEBUG_TIME(const char* fileStr, int line, const char* str);
 
-    /* Measure elapased time */
+    /* Measure elapsed time */
     float
     SCL_DEBUG_ELAPSED_TIME(const char* fileStr, int line, const char* str, int type);