Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed doc markdown #266

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/keycodes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -603,8 +603,8 @@ pub enum Key {
/// value of. Let us know if you think the key should be listed so
/// we can add it
/// On Linux, this will result in a keysym,
/// On Windows, this will result in a Virtual_Key and
/// On macOS, this will yield a KeyCode
/// On Windows, this will result in a `Virtual_Key` and
/// On macOS, this will yield a `KeyCode`
Other(u32),
}

Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,11 @@ pub enum Button {
/// Right mouse button
Right,
#[cfg(any(target_os = "windows", target_os = "linux"))]
/// 4th mouse button. Typically performs the same function as Browser_Back
/// 4th mouse button. Typically performs the same function as `Browser_Back`
Back,
#[cfg(any(target_os = "windows", target_os = "linux"))]
/// 5th mouse button. Typically performs the same function as
/// Browser_Forward
/// `Browser_Forward`
Forward,

/// Scroll up button. It is better to use the
Expand Down