From f9e656d5682a49bcfc317d9feee98dafa9c710f9 Mon Sep 17 00:00:00 2001 From: Raushan Srivastava <76804035+raushan-oss@users.noreply.github.com> Date: Tue, 20 Jan 2026 19:19:25 +0530 Subject: [PATCH] docs: improve wording in appdispatch Clarified the explanation of application dispatching and its benefits. --- docs/patterns/appdispatch.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/patterns/appdispatch.rst b/docs/patterns/appdispatch.rst index f22c8060..f5812af8 100644 --- a/docs/patterns/appdispatch.rst +++ b/docs/patterns/appdispatch.rst @@ -3,9 +3,9 @@ Application Dispatching Application dispatching is the process of combining multiple Flask applications on the WSGI level. You can combine not only Flask -applications but any WSGI application. This would allow you to run a -Django and a Flask application in the same interpreter side by side if -you want. The usefulness of this depends on how the applications work +applications but any WSGI application. This allows you to run a +Django application and a Flask application in the same interpreter +side by side. The usefulness of this depends on how the applications work internally. The fundamental difference from :doc:`packages` is that in this case you