diff options
author | Robert Knight <robert.knight@mendeley.com> | 2015-06-13 23:22:51 +0100 |
---|---|---|
committer | Robert Knight <robert.knight@mendeley.com> | 2015-06-13 23:22:51 +0100 |
commit | 5e626b7fdf1942af9c3f1faade1eba6ecd47e0ca (patch) | |
tree | 98a67c334cfc88abd19de86ea70ed856d1439d91 | |
parent | f0bab95c4dc13c1989979c611a4663eb5d590a0d (diff) | |
download | glutin-5e626b7fdf1942af9c3f1faade1eba6ecd47e0ca.tar.gz glutin-5e626b7fdf1942af9c3f1faade1eba6ecd47e0ca.zip |
Correct typo in MouseScrollDelta docs
-rw-r--r-- | src/events.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/events.rs b/src/events.rs index 1103452..07be8c9 100644 --- a/src/events.rs +++ b/src/events.rs @@ -63,7 +63,7 @@ pub enum MouseScrollDelta { /// and vertical directions. /// /// Positive values indicate movement forward - /// (away from the user) or righwards. + /// (away from the user) or rightwards. LineDelta(f32, f32), /// Amount in pixels to scroll in the horizontal and /// vertical direction. |