Browse Source

Fix grammatical error: incorrect verb conjugation

Before: >However, as a project *get* bigger

After: >However, as a project *gets* bigger
pull/2850/head
Bill Fienberg 7 years ago committed by GitHub
parent
commit
15b2301754
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      docs/tutorial/layout.rst

2
docs/tutorial/layout.rst

@ -31,7 +31,7 @@ A Flask application can be as simple as a single file.
def hello(): def hello():
return 'Hello, World!' return 'Hello, World!'
However, as a project get bigger, it becomes overwhelming to keep all However, as a project gets bigger, it becomes overwhelming to keep all
the code in one file. Python projects use *packages* to organize code the code in one file. Python projects use *packages* to organize code
into multiple modules that can be imported where needed, and the into multiple modules that can be imported where needed, and the
tutorial will do this as well. tutorial will do this as well.

Loading…
Cancel
Save