Skip to content

Commit b859c09

Browse files
author
lind
committed
fixed a typo
1 parent e7358ef commit b859c09

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/safeposix/syscalls/fs_calls.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2051,11 +2051,11 @@ impl Cage {
20512051
/// The `ioctl_syscall()` accepts three arguments:
20522052
/// * `fd` - an open file descriptor that refers to a device.
20532053
/// * `request` - the control function to be performed. The set of valid request values depends entirely on the device
2054-
// being addressed. MEDIA_IOC_DEVICE_INFO is an example of an ioctl control function to query device
2055-
// information that all media devices must support.
2054+
/// being addressed. MEDIA_IOC_DEVICE_INFO is an example of an ioctl control function to query device
2055+
/// information that all media devices must support.
20562056
/// * `ptrunion` - additional information needed by the addressed device to perform the selected control function.
2057-
// In the example of MEDIA_IOC_DEVICE_INFO request, a valid ptrunion value is a pointer to a struct
2058-
// media_device_info, from which the device information is obtained.
2057+
/// In the example of MEDIA_IOC_DEVICE_INFO request, a valid ptrunion value is a pointer to a struct
2058+
/// media_device_info, from which the device information is obtained.
20592059
///
20602060
/// ### Returns
20612061
///

0 commit comments

Comments
 (0)