Skip to content

Commit 6f69c83

Browse files
author
Amanda Butler
authored
Copy edit Time.md
Update content for active voice.
1 parent 52613a4 commit 6f69c83

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/reference/api/platform/Time.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
The C `date` and `time` functions are a group of functions in the standard library of the C programming language implementing date and time manipulation operations. They provide support for time acquisition, conversion between date formats and formatted output to strings.
44

5-
The C library function `time` is updated to read current RTC time if enabled, else time is set to 0 with `set_time` before reading RTC.
5+
The C library function `time` reads the current RTC time if enabled, else time is set to 0 with `set_time` before reading RTC.
66

7-
You can covert time to human readable format using `ctime`, `localtime`, `strftime` and other C standard functions.
7+
You can convert time to a human-readable format using `ctime`, `localtime`, `strftime` and other C standard functions.
88

9-
`mktime` and `localtime` C standard library functions cannot be used in interrupt handler with GCC toolchain. Dedicated routines for `mktime` and `localtime` are added to overcome this issue, which are optimized and faster then C standard library functions.
9+
You cannot use `mktime` and `localtime` C standard library functions in an interrupt handler with the GCC toolchain. We have added dedicated routines for `mktime` and `localtime`, which are optimized and faster then C standard library functions, to overcome this issue.
1010

1111
### RTC Time class reference
1212

0 commit comments

Comments
 (0)