Skip to content

Commit

Permalink
Remove spurious async in documentation example (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
taktran authored Dec 23, 2023
1 parent 3df56c6 commit ad368be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ the sub-applications to build the larger combined application::
from customers import customers_app
from orders import orders_app

async def create_app():
def create_app():
app = Microdot()
app.mount(customers_app, url_prefix='/customers')
app.mount(orders_app, url_prefix='/orders')
Expand Down

0 comments on commit ad368be

Please sign in to comment.