Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
curskey committed Oct 21, 2023
1 parent 19bd4c8 commit abf1587
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Application Instance Pattern
loader = BlueprintsLoader(app)
with app.app_context():
loader.register_blueprints()
loader.load_blueprints()
Application Factories Pattern
Expand All @@ -48,7 +48,7 @@ Application Factories Pattern
loader.init_app(app)
with app.app_context():
loader.register_blueprints()
loader.load_blueprints()
return app
Expand Down
4 changes: 2 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Application Instance Pattern
loader = BlueprintsLoader(app)
with app.app_context():
loader.register_blueprints()
loader.load_blueprints()
Application Factories Pattern
Expand All @@ -71,7 +71,7 @@ Application Factories Pattern
loader.init_app(app)
with app.app_context():
loader.register_blueprints()
loader.load_blueprints()
return app
Expand Down

0 comments on commit abf1587

Please sign in to comment.