浏览代码

Merge pull request #342 from varunpatro/patch-1

Correct spelling error.
0xAX 9 年之前
父节点
当前提交
e77ebe603e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Timers/timers-7.md

+ 1 - 1
Timers/timers-7.md

@@ -49,7 +49,7 @@ struct timeval {
 };
 ```
 
-The second parameter of the `gettimeofday` function is pointer to the `timezone` structure which represents a timizone. In our example, we pass address of the `timeval time` to the `gettimeofday` function, the Linux kernel fills the given `timeval` structure and returns it back to us. Additianolly we format the time with the `strftime` function to get something more human readable than elapsed microseconds. Let's see on result:
+The second parameter of the `gettimeofday` function is pointer to the `timezone` structure which represents a timizone. In our example, we pass address of the `timeval time` to the `gettimeofday` function, the Linux kernel fills the given `timeval` structure and returns it back to us. Additionally, we format the time with the `strftime` function to get something more human readable than elapsed microseconds. Let's see on result:
 
 ```C
 ~$ gcc date.c -o date