Skip to content

Commit

Permalink
Fix clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pentamassiv authored Sep 10, 2024
1 parent 01151aa commit 7fb1a28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ impl Display for NewConError {
let string = match self {
NewConError::EstablishCon(e) => format!("no connection could be established: ({e})"),
NewConError::NoPermission => {
format!("the application does not have the permission to simulate input")
"the application does not have the permission to simulate input".to_string()
}
NewConError::Reply => {
"there was an error with the reply from the display server. this should not happen"
Expand Down

0 comments on commit 7fb1a28

Please sign in to comment.