From af8a86b68fa33700876dd47890ea31bef934fc65 Mon Sep 17 00:00:00 2001 From: Aldo Mateli Date: Tue, 5 Mar 2024 23:09:39 +0000 Subject: [PATCH] Fix doc links --- docs/pages/index.md | 2 +- docs/pages/quickstart.md | 3 ++- readme.md | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/pages/index.md b/docs/pages/index.md index 953dd01..a2a5917 100644 --- a/docs/pages/index.md +++ b/docs/pages/index.md @@ -3,7 +3,7 @@ Dependency injection container with a focus on developer experience, type safety and ease of use. !!! note "New: Dependency injection for Flask" - Simplify usage in Flask applications by using the new [Flask integration](integrations/flask)! + Simplify usage in Flask applications by using the new [Flask integration](integrations/flask.md)! * Automatically inject dependencies on views without having to manually decorate. * Expose Flask application configuration in the container. diff --git a/docs/pages/quickstart.md b/docs/pages/quickstart.md index 5f4cbc0..6b243fe 100644 --- a/docs/pages/quickstart.md +++ b/docs/pages/quickstart.md @@ -42,7 +42,8 @@ def get_posts(post_repository: PostRepository): ``` 1. Decorate all methods where the library must perform injection. - Optional when using the [Flask integration](integrations/flask). + Optional when using the [Flask](integrations/flask.md) + or [FastApi](integrations/fastapi.md) integrations. **Installation** diff --git a/readme.md b/readme.md index 25d6bdb..2c68549 100644 --- a/readme.md +++ b/readme.md @@ -12,7 +12,7 @@ > [!TIP] > Simplify Dependency injection for Flask using the new -[Flask integration](https://maldoinc.github.io/wireup/latest/integrations/flask/)! +[Flask integration](https://maldoinc.github.io/wireup/latest/integrations/flask)! > > * Automatically inject dependencies without having to manually call autowire. > * Expose flask application configuration in the container. @@ -28,7 +28,7 @@ * Framework Agnostic * Simplified usage in [Flask](https://maldoinc.github.io/wireup/latest/integrations/flask/) -and [FastApi](https://maldoinc.github.io/wireup/latest/integrations/flask/) using the first-party integrations. +and [FastApi](https://maldoinc.github.io/wireup/latest/integrations/fastapi/) using the first-party integrations. ## 📋 Quickstart