Skip to content

Commit a02d956

Browse files
committed
chore(input): typo in static variable name
1 parent 2f7411a commit a02d956

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/src/pages/input/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ mod mouse;
2020
mod touchpad;
2121

2222
crate::cache_dynamic_lazy! {
23-
static ACCELERAION_DESC: String = fl!("acceleration-desc");
23+
static ACCELERATION_DESC: String = fl!("acceleration-desc");
2424
static DISABLE_WHILE_TYPING: String = fl!("disable-while-typing");
2525
static PRIMARY_BUTTON: String = fl!("primary-button");
2626
static SCROLLING_NATURAL_DESC: String = fl!("scrolling", "natural-desc");

app/src/pages/input/mouse.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ fn mouse() -> Section<crate::pages::Message> {
4848
super::PRIMARY_BUTTON.as_str().into(),
4949
MOUSE_SPEED.as_str().into(),
5050
MOUSE_ACCELERATION.as_str().into(),
51-
super::ACCELERAION_DESC.as_str().into(),
51+
super::ACCELERATION_DESC.as_str().into(),
5252
])
5353
.view::<Page>(|binder, _page, section| {
5454
let input = binder.page::<super::Page>().expect("input page not found");

app/src/pages/input/touchpad.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ fn touchpad() -> Section<crate::pages::Message> {
9191
)
9292
.add(
9393
settings::item::builder(&*TOUCHPAD_ACCELERAION)
94-
.description(&*super::ACCELERAION_DESC)
94+
.description(&*super::ACCELERATION_DESC)
9595
.toggler(
9696
input
9797
.input_touchpad

0 commit comments

Comments
 (0)