@@ -804,7 +804,7 @@ pub enum Whence {
804
804
SeekCur = libc:: SEEK_CUR ,
805
805
/// Specify an offset relative to the end of the file.
806
806
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
808
808
/// equal to offset that contains some data. If offset points to
809
809
/// some data, then the file offset is set to offset.
810
810
#[ cfg( any( target_os = "dragonfly" , target_os = "freebsd" ,
@@ -813,7 +813,7 @@ pub enum Whence {
813
813
target_arch = "mips64" ) ) ) ) ) ]
814
814
SeekData = libc:: SEEK_DATA ,
815
815
/// 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
817
817
/// the file offset should be set to offset. If there is no hole past offset,
818
818
/// then the file offset should be adjusted to the end of the file (i.e., there
819
819
/// is an implicit hole at the end of any file).
@@ -1361,7 +1361,7 @@ pub enum SysconfVar {
1361
1361
OPEN_MAX = libc:: _SC_OPEN_MAX,
1362
1362
#[ cfg( any( target_os="dragonfly" , target_os="freebsd" , target_os = "ios" ,
1363
1363
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.
1365
1365
_POSIX_ADVISORY_INFO = libc:: _SC_ADVISORY_INFO,
1366
1366
#[ cfg( any( target_os="dragonfly" , target_os="freebsd" , target_os = "ios" ,
1367
1367
target_os="linux" , target_os = "macos" , target_os="netbsd" ,
@@ -1380,7 +1380,7 @@ pub enum SysconfVar {
1380
1380
target_os="openbsd" ) ) ]
1381
1381
/// The implementation supports the Process CPU-Time Clocks option.
1382
1382
_POSIX_CPUTIME = libc:: _SC_CPUTIME,
1383
- /// The implementation supports the File Synchronization option.
1383
+ /// The implementation supports the File Synchronization option.
1384
1384
_POSIX_FSYNC = libc:: _SC_FSYNC,
1385
1385
#[ cfg( any( target_os="dragonfly" , target_os="freebsd" , target_os = "ios" ,
1386
1386
target_os="linux" , target_os = "macos" , target_os="openbsd" ) ) ]
@@ -1495,7 +1495,7 @@ pub enum SysconfVar {
1495
1495
target_os="linux" , target_os = "macos" , target_os="openbsd" ) ) ]
1496
1496
/// The implementation supports timeouts.
1497
1497
_POSIX_TIMEOUTS = libc:: _SC_TIMEOUTS,
1498
- /// The implementation supports timers.
1498
+ /// The implementation supports timers.
1499
1499
_POSIX_TIMERS = libc:: _SC_TIMERS,
1500
1500
#[ cfg( any( target_os="dragonfly" , target_os="freebsd" , target_os = "ios" ,
1501
1501
target_os="linux" , target_os = "macos" , target_os="openbsd" ) ) ]
0 commit comments