浏览代码

fix Chinese comments.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@618 bbd45198-f89e-11dd-88c7-29a3b14d5316
bernard.xiong 15 年之前
父节点
当前提交
190324c7a6
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      examples/kernel/semaphore_dynamic.c

+ 1 - 1
examples/kernel/semaphore_dynamic.c

@@ -21,7 +21,7 @@ static void thread_entry(void* parameter)
 	/* 获得当前的OS Tick */
 	tick = rt_tick_get();
 
-	/* 图持有一个信号量,如果10个OS Tick依然没拿到,则超时返回 */
+	/* 图持有一个信号量,如果10个OS Tick依然没拿到,则超时返回 */
 	result = rt_sem_take(sem, 10);
 	if (result == -RT_ETIMEOUT)
 	{