Skip to content

Commit a3729da

Browse files
authored
Minor typo in creation of "__init__.py"
Line 34: Initially, the documentation instructed the user to create a new file named "__init.py__". This is referenced as "__init__.py" in the remainder of the document. This edit is to reflect that.
1 parent e20b082 commit a3729da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/python/learn-flask-visual-studio-step-02-create-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ In the code created by the "Blank Flask Web Project" template, you have a single
3131

3232
1. In your project folder, create an app folder called `HelloFlask` (right-click the project in **Solution Explorer** and select **Add** > **New Folder**.)
3333

34-
1. In the `HelloFlask` folder, create a file named `__init.py__` with the following contents that creates the `Flask` instance and loads the app's views (created in the next step):
34+
1. In the `HelloFlask` folder, create a file named `__init__.py` with the following contents that creates the `Flask` instance and loads the app's views (created in the next step):
3535

3636
```python
3737
from flask import Flask
@@ -215,4 +215,4 @@ Answer: Yes, you can use subfolders and then refer to the relative path under `t
215215
## Go deeper
216216
217217
- [Flask Quickstart - Rendering Templates](http://flask.pocoo.org/docs/1.0/quickstart/#rendering-templates) (flask.pocoo.org)
218-
- Tutorial source code on GitHub: [Microsoft/python-sample-vs-learning-flask](https://github.com/Microsoft/python-sample-vs-learning-flask)
218+
- Tutorial source code on GitHub: [Microsoft/python-sample-vs-learning-flask](https://github.com/Microsoft/python-sample-vs-learning-flask)

0 commit comments

Comments
 (0)