From 80c51be54ec7ffe58e03dc8cdfea764f628b4030 Mon Sep 17 00:00:00 2001 From: Chris O'Hara Date: Tue, 21 May 2024 09:53:42 +1000 Subject: [PATCH] README fixes --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c96b210..013ead7 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Python package to develop applications with the Dispatch platform. - [Running Dispatch Applications](#running-dispatch-applications) - [Writing Transactional Applications with Dispatch](#writing-transactional-applications-with-dispatch) - [Integration with FastAPI](#integration-with-fastapi) - - [Integration with FastAPI](#integration-with-flask) + - [Integration with Flask](#integration-with-flask) - [Configuration](#configuration) - [Serialization](#serialization) - [Examples](#examples) @@ -201,7 +201,7 @@ program, driven by the Dispatch SDK. ### Integration with Flask -Dispatch can also be integrated with web applications built on [Flask]. +Dispatch can also be integrated with web applications built on [Flask][flask]. The API is nearly identical to FastAPI above, instead use: @@ -212,7 +212,7 @@ app = Flask(__name__) dispatch = Dispatch(app) ``` -Flask: https://flask.palletsprojects.com/en/3.0.x/ +[flask]: https://flask.palletsprojects.com/en/3.0.x/ ### Configuration