Ben S hace 10 años
padre
commit
b57e82e771
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      src/options.rs

+ 2 - 2
src/options.rs

@@ -609,8 +609,8 @@ mod test {
 
     fn is_helpful<T>(misfire: Result<T, Misfire>) -> bool {
         match misfire {
-            Misfire::Err(Help(_)) => true,
-            _            => false,
+            Err(Misfire::Help(_)) => true,
+            _                     => false,
         }
     }