Skip to content

Commit 1bf938c

Browse files
committed
Fix the spelling of illumos.
1 parent 1595eea commit 1bf938c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/termios/types.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ impl Termios {
100100
self.input_speed as u32
101101
}
102102

103-
// On Illumos, `input_speed` is not present.
103+
// On illumos, `input_speed` is not present.
104104
#[cfg(any(solarish, all(libc, target_env = "newlib"), target_os = "aix"))]
105105
unsafe {
106106
speed::decode(c::cfgetispeed(crate::utils::as_ptr(self).cast())).unwrap()
@@ -133,7 +133,7 @@ impl Termios {
133133
self.output_speed as u32
134134
}
135135

136-
// On Illumos, `output_speed` is not present.
136+
// On illumos, `output_speed` is not present.
137137
#[cfg(any(solarish, all(libc, target_env = "newlib"), target_os = "aix"))]
138138
unsafe {
139139
speed::decode(c::cfgetospeed(crate::utils::as_ptr(self).cast())).unwrap()

0 commit comments

Comments
 (0)