Skip to content

Commit 7fff6d5

Browse files
committed
unistd: Remove trailing whitespace
1 parent 41c9e1b commit 7fff6d5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/unistd.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@ pub enum Whence {
804804
SeekCur = libc::SEEK_CUR,
805805
/// Specify an offset relative to the end of the file.
806806
SeekEnd = libc::SEEK_END,
807-
/// Specify an offset relative to the next location in the file greater than or
807+
/// Specify an offset relative to the next location in the file greater than or
808808
/// equal to offset that contains some data. If offset points to
809809
/// some data, then the file offset is set to offset.
810810
#[cfg(any(target_os = "dragonfly", target_os = "freebsd",
@@ -813,7 +813,7 @@ pub enum Whence {
813813
target_arch = "mips64")))))]
814814
SeekData = libc::SEEK_DATA,
815815
/// Specify an offset relative to the next hole in the file greater than
816-
/// or equal to offset. If offset points into the middle of a hole, then
816+
/// or equal to offset. If offset points into the middle of a hole, then
817817
/// the file offset should be set to offset. If there is no hole past offset,
818818
/// then the file offset should be adjusted to the end of the file (i.e., there
819819
/// is an implicit hole at the end of any file).
@@ -1361,7 +1361,7 @@ pub enum SysconfVar {
13611361
OPEN_MAX = libc::_SC_OPEN_MAX,
13621362
#[cfg(any(target_os="dragonfly", target_os="freebsd", target_os = "ios",
13631363
target_os="linux", target_os = "macos", target_os="openbsd"))]
1364-
/// The implementation supports the Advisory Information option.
1364+
/// The implementation supports the Advisory Information option.
13651365
_POSIX_ADVISORY_INFO = libc::_SC_ADVISORY_INFO,
13661366
#[cfg(any(target_os="dragonfly", target_os="freebsd", target_os = "ios",
13671367
target_os="linux", target_os = "macos", target_os="netbsd",
@@ -1380,7 +1380,7 @@ pub enum SysconfVar {
13801380
target_os="openbsd"))]
13811381
/// The implementation supports the Process CPU-Time Clocks option.
13821382
_POSIX_CPUTIME = libc::_SC_CPUTIME,
1383-
/// The implementation supports the File Synchronization option.
1383+
/// The implementation supports the File Synchronization option.
13841384
_POSIX_FSYNC = libc::_SC_FSYNC,
13851385
#[cfg(any(target_os="dragonfly", target_os="freebsd", target_os = "ios",
13861386
target_os="linux", target_os = "macos", target_os="openbsd"))]
@@ -1495,7 +1495,7 @@ pub enum SysconfVar {
14951495
target_os="linux", target_os = "macos", target_os="openbsd"))]
14961496
/// The implementation supports timeouts.
14971497
_POSIX_TIMEOUTS = libc::_SC_TIMEOUTS,
1498-
/// The implementation supports timers.
1498+
/// The implementation supports timers.
14991499
_POSIX_TIMERS = libc::_SC_TIMERS,
15001500
#[cfg(any(target_os="dragonfly", target_os="freebsd", target_os = "ios",
15011501
target_os="linux", target_os = "macos", target_os="openbsd"))]

0 commit comments

Comments
 (0)