From 8d67dac13c75b13e98c7b7dacd1e8aea5e11625b Mon Sep 17 00:00:00 2001 From: Varun Patro Date: Sun, 27 Mar 2016 23:05:29 +0800 Subject: [PATCH] Correct spelling error. --- Timers/timers-7.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Timers/timers-7.md b/Timers/timers-7.md index 317282f..da163de 100644 --- a/Timers/timers-7.md +++ b/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