diff options
| author | Yuya Nishihara <yuya@tcha.org> | 2024-05-28 14:38:24 +0900 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2024-05-28 15:35:45 +0300 |
| commit | f2ce84b243e4eae837a97a146fe1d8fcf0e512ca (patch) | |
| tree | 2dcf7ff58169941592e9d7bc97a917cacc82c7fb | |
| parent | ae7fb4c4f405aa0ff49930040d414581a812d938 (diff) | |
| download | niri-f2ce84b243e4eae837a97a146fe1d8fcf0e512ca.tar.gz niri-f2ce84b243e4eae837a97a146fe1d8fcf0e512ca.tar.bz2 niri-f2ce84b243e4eae837a97a146fe1d8fcf0e512ca.zip | |
Fix copy-paste error in scroll-method error message
| -rw-r--r-- | niri-config/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/niri-config/src/lib.rs b/niri-config/src/lib.rs index e966031a..9c1375ed 100644 --- a/niri-config/src/lib.rs +++ b/niri-config/src/lib.rs @@ -2280,7 +2280,7 @@ impl FromStr for ScrollMethod { "edge" => Ok(Self::Edge), "on-button-down" => Ok(Self::OnButtonDown), _ => Err(miette!( - r#"invalid scroll method, can be "no-scroll" or "two-finger", "edge", or "on-button-down""# + r#"invalid scroll method, can be "no-scroll", "two-finger", "edge", or "on-button-down""# )), } } |
