@@ -779,7 +779,7 @@ pub enum Whence {
779
779
SeekCur = libc:: SEEK_CUR ,
780
780
/// Specify an offset relative to the end of the file.
781
781
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
783
783
/// equal to offset that contains some data. If offset points to
784
784
/// some data, then the file offset is set to offset.
785
785
#[ cfg( any( target_os = "dragonfly" , target_os = "freebsd" ,
@@ -788,7 +788,7 @@ pub enum Whence {
788
788
target_arch = "mips64" ) ) ) ) ) ]
789
789
SeekData = libc:: SEEK_DATA ,
790
790
/// 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
792
792
/// the file offset should be set to offset. If there is no hole past offset,
793
793
/// then the file offset should be adjusted to the end of the file (i.e., there
794
794
/// is an implicit hole at the end of any file).
@@ -1289,7 +1289,7 @@ pub enum SysconfVar {
1289
1289
OPEN_MAX = libc:: _SC_OPEN_MAX,
1290
1290
#[ cfg( any( target_os="dragonfly" , target_os="freebsd" , target_os = "ios" ,
1291
1291
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.
1293
1293
_POSIX_ADVISORY_INFO = libc:: _SC_ADVISORY_INFO,
1294
1294
#[ cfg( any( target_os="dragonfly" , target_os="freebsd" , target_os = "ios" ,
1295
1295
target_os="linux" , target_os = "macos" , target_os="netbsd" ,
@@ -1308,7 +1308,7 @@ pub enum SysconfVar {
1308
1308
target_os="openbsd" ) ) ]
1309
1309
/// The implementation supports the Process CPU-Time Clocks option.
1310
1310
_POSIX_CPUTIME = libc:: _SC_CPUTIME,
1311
- /// The implementation supports the File Synchronization option.
1311
+ /// The implementation supports the File Synchronization option.
1312
1312
_POSIX_FSYNC = libc:: _SC_FSYNC,
1313
1313
#[ cfg( any( target_os="dragonfly" , target_os="freebsd" , target_os = "ios" ,
1314
1314
target_os="linux" , target_os = "macos" , target_os="openbsd" ) ) ]
@@ -1423,7 +1423,7 @@ pub enum SysconfVar {
1423
1423
target_os="linux" , target_os = "macos" , target_os="openbsd" ) ) ]
1424
1424
/// The implementation supports timeouts.
1425
1425
_POSIX_TIMEOUTS = libc:: _SC_TIMEOUTS,
1426
- /// The implementation supports timers.
1426
+ /// The implementation supports timers.
1427
1427
_POSIX_TIMERS = libc:: _SC_TIMERS,
1428
1428
#[ cfg( any( target_os="dragonfly" , target_os="freebsd" , target_os = "ios" ,
1429
1429
target_os="linux" , target_os = "macos" , target_os="openbsd" ) ) ]
0 commit comments