We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1595eea commit 1bf938cCopy full SHA for 1bf938c
src/termios/types.rs
@@ -100,7 +100,7 @@ impl Termios {
100
self.input_speed as u32
101
}
102
103
- // On Illumos, `input_speed` is not present.
+ // On illumos, `input_speed` is not present.
104
#[cfg(any(solarish, all(libc, target_env = "newlib"), target_os = "aix"))]
105
unsafe {
106
speed::decode(c::cfgetispeed(crate::utils::as_ptr(self).cast())).unwrap()
@@ -133,7 +133,7 @@ impl Termios {
133
self.output_speed as u32
134
135
136
- // On Illumos, `output_speed` is not present.
+ // On illumos, `output_speed` is not present.
137
138
139
speed::decode(c::cfgetospeed(crate::utils::as_ptr(self).cast())).unwrap()
0 commit comments