Skip to content

Commit 77fe737

Browse files
committed
fix: clippy
1 parent 33cc32a commit 77fe737

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

examples/demo.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ use std::time::Duration;
44
// Connect to demo docker environment.
55
// cargo run --example demo
66

7-
87
#[tokio::main]
98
async fn main() {
109
// let _ = tracing_subscriber::fmt()
@@ -41,5 +40,8 @@ async fn main() {
4140

4241
let user2 = FPUser::new("user_id").with("city", "New York");
4342
let discount2 = fp.number_value("promotion_activity", &user2, 9.0);
44-
println!("Result => discount for user in New York is : {:?}", discount2);
43+
println!(
44+
"Result => discount for user in New York is : {:?}",
45+
discount2
46+
);
4547
}

0 commit comments

Comments
 (0)