aboutsummaryrefslogtreecommitdiff
path: root/examples/async/animals/cat.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/async/animals/cat.rs')
-rw-r--r--examples/async/animals/cat.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/async/animals/cat.rs b/examples/async/animals/cat.rs
index b1e6f27..7062929 100644
--- a/examples/async/animals/cat.rs
+++ b/examples/async/animals/cat.rs
@@ -4,7 +4,7 @@ use crate::interfaces::cat::ICat;
pub struct Cat {}
-#[injectable(ICat, { async = true })]
+#[injectable(ICat, async = true)]
impl Cat
{
pub fn new() -> Self