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 f48e67c commit bef331cCopy full SHA for bef331c
src/displayrotation.rs
@@ -1,18 +1,14 @@
1
//! Display rotation
2
3
-// TODO: Add to prelude
4
-/// Display rotation.
5
-///
6
-/// Note that 90º and 270º rotations are not supported by
7
-// [`TerminalMode`](../mode/terminal/struct.TerminalMode.html).
+/// Display rotation
8
#[derive(Clone, Copy)]
9
pub enum DisplayRotation {
10
/// No rotation, normal display
11
Rotate0,
12
- /// Rotate by 90 degress clockwise
+ /// Rotate by 90 degrees clockwise
13
Rotate90,
14
- /// Rotate by 180 degress clockwise
+ /// Rotate by 180 degrees clockwise
15
Rotate180,
16
- /// Rotate 270 degress clockwise
+ /// Rotate 270 degrees clockwise
17
Rotate270,
18
}
0 commit comments