mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-14 12:02:23 +03:00
Merge pull request #1710 from UnHumbleBen/patch-1
Removed unnecessary dereference in Store::find
This commit is contained in:
commit
49acddf88e
@ -85,7 +85,7 @@ impl Store {
|
||||
Some(
|
||||
self.data
|
||||
.iter()
|
||||
.filter(|todo| query.matches(*todo))
|
||||
.filter(|todo| query.matches(todo))
|
||||
.collect(),
|
||||
)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user