From 15b2301754187863eabd0b584c70955b5d3f31a3 Mon Sep 17 00:00:00 2001 From: Bill Fienberg Date: Fri, 29 Jun 2018 14:35:44 -0500 Subject: [PATCH] Fix grammatical error: incorrect verb conjugation Before: >However, as a project *get* bigger After: >However, as a project *gets* bigger --- docs/tutorial/layout.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/layout.rst b/docs/tutorial/layout.rst index 2d7ddebe..8133ebfc 100644 --- a/docs/tutorial/layout.rst +++ b/docs/tutorial/layout.rst @@ -31,7 +31,7 @@ A Flask application can be as simple as a single file. def hello(): 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 into multiple modules that can be imported where needed, and the tutorial will do this as well.