Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/patterns/appdispatch.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down