Skip to content

Commit 1478e71

Browse files
committed
unistd: Remove trailing whitespace
1 parent 28c5b4a commit 1478e71

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
@@ -779,7 +779,7 @@ pub enum Whence {
779779
SeekCur = libc::SEEK_CUR,
780780
/// Specify an offset relative to the end of the file.
781781
SeekEnd = libc::SEEK_END,
782-
/// Specify an offset relative to the next location in the file greater than or
782+
/// Specify an offset relative to the next location in the file greater than or
783783
/// equal to offset that contains some data. If offset points to
784784
/// some data, then the file offset is set to offset.
785785
#[cfg(any(target_os = "dragonfly", target_os = "freebsd",
@@ -788,7 +788,7 @@ pub enum Whence {
788788
target_arch = "mips64")))))]
789789
SeekData = libc::SEEK_DATA,
790790
/// Specify an offset relative to the next hole in the file greater than
791-
/// or equal to offset. If offset points into the middle of a hole, then
791+
/// or equal to offset. If offset points into the middle of a hole, then
792792
/// the file offset should be set to offset. If there is no hole past offset,
793793
/// then the file offset should be adjusted to the end of the file (i.e., there
794794
/// is an implicit hole at the end of any file).
@@ -1289,7 +1289,7 @@ pub enum SysconfVar {
12891289
OPEN_MAX = libc::_SC_OPEN_MAX,
12901290
#[cfg(any(target_os="dragonfly", target_os="freebsd", target_os = "ios",
12911291
target_os="linux", target_os = "macos", target_os="openbsd"))]
1292-
/// The implementation supports the Advisory Information option.
1292+
/// The implementation supports the Advisory Information option.
12931293
_POSIX_ADVISORY_INFO = libc::_SC_ADVISORY_INFO,
12941294
#[cfg(any(target_os="dragonfly", target_os="freebsd", target_os = "ios",
12951295
target_os="linux", target_os = "macos", target_os="netbsd",
@@ -1308,7 +1308,7 @@ pub enum SysconfVar {
13081308
target_os="openbsd"))]
13091309
/// The implementation supports the Process CPU-Time Clocks option.
13101310
_POSIX_CPUTIME = libc::_SC_CPUTIME,
1311-
/// The implementation supports the File Synchronization option.
1311+
/// The implementation supports the File Synchronization option.
13121312
_POSIX_FSYNC = libc::_SC_FSYNC,
13131313
#[cfg(any(target_os="dragonfly", target_os="freebsd", target_os = "ios",
13141314
target_os="linux", target_os = "macos", target_os="openbsd"))]
@@ -1423,7 +1423,7 @@ pub enum SysconfVar {
14231423
target_os="linux", target_os = "macos", target_os="openbsd"))]
14241424
/// The implementation supports timeouts.
14251425
_POSIX_TIMEOUTS = libc::_SC_TIMEOUTS,
1426-
/// The implementation supports timers.
1426+
/// The implementation supports timers.
14271427
_POSIX_TIMERS = libc::_SC_TIMERS,
14281428
#[cfg(any(target_os="dragonfly", target_os="freebsd", target_os = "ios",
14291429
target_os="linux", target_os = "macos", target_os="openbsd"))]

0 commit comments

Comments
 (0)