diff options
Diffstat (limited to '')
| -rw-r--r-- | examples/todos/src/main.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/todos/src/main.rs b/examples/todos/src/main.rs index 3048a668..1ad3aba7 100644 --- a/examples/todos/src/main.rs +++ b/examples/todos/src/main.rs @@ -443,7 +443,7 @@ pub enum Filter {  }  impl Filter { -    fn matches(&self, task: &Task) -> bool { +    fn matches(self, task: &Task) -> bool {          match self {              Filter::All => true,              Filter::Active => !task.completed,  | 
