time: fix typos in TimeSpan related docstring

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
This commit is contained in:
Christian Ebner 2024-10-23 11:10:59 +02:00 committed by Thomas Lamprecht
parent f4868ff519
commit 548411808e

View File

@ -1,14 +1,14 @@
//! Timespans that try to be compatible with the systemd time span format. //! Timespans that try to be compatible with the systemd time span format.
//! //!
//! Time spans refer to time durations, like [std::time::Duration] but in the format that is //! Time spans refer to time durations, like [std::time::Duration] but in the format that is
//! targetting human interfaces and that systemd understands. Parts of this documentation have been //! targeting human interfaces and that systemd understands. Parts of this documentation have been
//! adapted from the systemd.time manual page. //! adapted from the systemd.time manual page.
//! //!
//! The following time units are understood: //! The following time units are understood:
//! - `nsec`, `ns` (not always accepted by systemd.time) //! - `nsec`, `ns` (not always accepted by systemd.time)
//! - `usec`, `us`, `µs` //! - `usec`, `us`, `µs`
//! - `msec`, `ms` //! - `msec`, `ms`
//! - `seconds`, s`econd`, `sec`, `s` //! - `seconds`, `second`, `sec`, `s`
//! - `minutes`, `minute`, `min`, `m` //! - `minutes`, `minute`, `min`, `m`
//! - `hours`, `hour`, `hr`, `h` //! - `hours`, `hour`, `hr`, `h`
//! - `days`, `day`, `d` //! - `days`, `day`, `d`
@ -26,7 +26,7 @@
//! spaces between units and/or values can be added or omitted. The order of the time values does //! spaces between units and/or values can be added or omitted. The order of the time values does
//! not matter. //! not matter.
//! //!
//! The following examples are all represeting the exact same time span of 1 day 2 hours and 3 //! The following examples are all representing the exact same time span of 1 day 2 hours and 3
//! minutes: //! minutes:
//! //!
//! - `1d 2h 3m` //! - `1d 2h 3m`