mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-06-02 23:51:21 +00: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…
x
Reference in New Issue
Block a user