diff options
Diffstat (limited to 'examples/async/animals/dog.rs')
-rw-r--r-- | examples/async/animals/dog.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/async/animals/dog.rs b/examples/async/animals/dog.rs index d1b33f9..6a4e82b 100644 --- a/examples/async/animals/dog.rs +++ b/examples/async/animals/dog.rs @@ -4,7 +4,7 @@ use crate::interfaces::dog::IDog; pub struct Dog {} -#[injectable(IDog, { async = true })] +#[injectable(IDog, async = true)] impl Dog { pub fn new() -> Self |