Skip to content

Commit 2803100

Browse files
committed
Remove unnecessary reference
1 parent 83d014b commit 2803100

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/simple_device_tokio.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ pub(crate) async fn main() -> shvrpc::Result<()> {
217217
Some(Ok(param.into()))
218218
}
219219
"setVecString" [IsSetter, Write, "List", ""] (param: Vec<String>) => {
220-
println!("param data: {:?}", &param);
220+
println!("param data: {param:?}");
221221
Some(Ok(().into()))
222222
}
223223
"42" [IsGetter, Browse, "", ""] => {

0 commit comments

Comments
 (0)