Skip to content

Commit 2dd9911

Browse files
authored
Fix spelling (#177)
1 parent b0c4107 commit 2dd9911

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
## [Unreleased] - ReleaseDate
88

9+
### Fixed
10+
11+
- [#177](https://github.com/jamwaffles/ssd1306/pull/177) Fixed a few spelling mistakes.
12+
913
### Changed
1014

1115
- **(breaking)** [#175](https://github.com/jamwaffles/ssd1306/pull/175) Increased MSRV to 1.57.0
@@ -15,7 +19,7 @@
1519
### Added
1620

1721
- [#161](https://github.com/jamwaffles/ssd1306/pull/161) Added a `set_mirror` method to enable or disable display mirroring.
18-
- [#166](https://github.com/jamwaffles/ssd1306/pull/166) Added `DisplaySize` configuration for 64x32 displays
22+
- [#166](https://github.com/jamwaffles/ssd1306/pull/166) Added `DisplaySize` configuration for 64x32 displays.
1923

2024
## [0.7.0] - 2021-07-08
2125

src/command.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ pub enum Command {
6363
StartLine(u8),
6464
/// Reverse columns from 127-0
6565
SegmentRemap(bool),
66-
/// Set multipex ratio from 15-63 (MUX-1)
66+
/// Set multiplex ratio from 15-63 (MUX-1)
6767
Multiplex(u8),
6868
/// Scan from COM[n-1] to COM0 (where N is mux ratio)
6969
ReverseComDir(bool),

src/rotation.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
pub enum DisplayRotation {
66
/// No rotation, normal display
77
Rotate0,
8-
/// Rotate by 90 degress clockwise
8+
/// Rotate by 90 degrees clockwise
99
Rotate90,
10-
/// Rotate by 180 degress clockwise
10+
/// Rotate by 180 degrees clockwise
1111
Rotate180,
12-
/// Rotate 270 degress clockwise
12+
/// Rotate 270 degrees clockwise
1313
Rotate270,
1414
}

src/size.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ pub trait DisplaySize {
3838
/// Vertical offset in pixels
3939
const OFFSETY: u8 = 0;
4040

41-
/// Size of framebuffer. Because the display is monocrome, this is
41+
/// Size of framebuffer. Because the display is monochrome, this is
4242
/// width * height / 8
4343
type Buffer: AsMut<[u8]> + NewZeroed;
4444

0 commit comments

Comments
 (0)