Skip to content

Commit 6ca475b

Browse files
committed
Make clippy happy by not using foo as an argument name
1 parent caacd7c commit 6ca475b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wp_mobile/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
pub use wp_api;
33

44
#[uniffi::export]
5-
fn wp_mobile_crate_works(foo: String) -> String {
6-
format!("foo is {}", foo)
5+
fn wp_mobile_crate_works(input: String) -> String {
6+
format!("foo is {}", input)
77
}
88

99
uniffi::setup_scaffolding!();

0 commit comments

Comments
 (0)