From 99d8b581836fe98bd21869fb22ef4a38fb2eec09 Mon Sep 17 00:00:00 2001 From: Aldo Mateli Date: Thu, 28 Dec 2023 20:49:52 +0100 Subject: [PATCH] Fix typo --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 651641c..fa99d55 100644 --- a/readme.md +++ b/readme.md @@ -69,7 +69,7 @@ class PostRepository: @container.autowire # Decorate all targets where the library must perform injection, such as views in an Api. # Services are automatically injected based on annotated type. -# Optional for views when using flask integrations. +# Optional for views when using flask integration. def get_posts(post_repository: PostRepository): return post_repository.find_all() ```