fix grammar issues

Signed-off-by: Jerry Yu <jerry.h.yu@arm.com>
This commit is contained in:
Jerry Yu 2023-04-20 10:01:42 +08:00
parent d3c7d538f1
commit ad2091d9c2

View File

@ -76,7 +76,8 @@ void time_delay_milliseconds(int delay_ms)
/* BEGIN_CASE depends_on:MBEDTLS_HAVE_TIME */ /* BEGIN_CASE depends_on:MBEDTLS_HAVE_TIME */
/* /*
* WARNING: DONOT ENABLE THIS TEST. RESERVE IT HERE TO KEEP THE REASON. * WARNING: DO NOT ENABLE THIS TEST. We keep the code here to document the
* reason.
* *
* The test often failed on the CI. See #1517. CI failures cannot be * The test often failed on the CI. See #1517. CI failures cannot be
* completely avoided due to out-of-sync clock sources. * completely avoided due to out-of-sync clock sources.
@ -98,7 +99,7 @@ void time_delay_seconds(int delay_secs)
* CLOCK_REALTIME should not affect `nanosleep()`. * CLOCK_REALTIME should not affect `nanosleep()`.
* *
* If discontinuous changes occur during `nanosleep()`, we will get * If discontinuous changes occur during `nanosleep()`, we will get
* `elapsed_secs < delay_secs` for backward and `elapsed_secs > delay_secs` * `elapsed_secs < delay_secs` for backward or `elapsed_secs > delay_secs`
* for forward. * for forward.
* *
* The following tolerance windows cannot be guaranteed. * The following tolerance windows cannot be guaranteed.