Browse Source

Merge pull request #2001 from corrigentia/patch-31

Fix some grammar and punctuation in project_organization.rst
Rémi Verschelde 6 years ago
parent
commit
d731d7f7e6
1 changed files with 4 additions and 4 deletions
  1. 4 4
      getting_started/workflow/project_setup/project_organization.rst

+ 4 - 4
getting_started/workflow/project_setup/project_organization.rst

@@ -10,8 +10,8 @@ This tutorial aims to propose a simple workflow on how to organize
 projects. Since Godot allows the programmer to use the file-system as
 projects. Since Godot allows the programmer to use the file-system as
 they please, figuring out a way to organize projects when starting
 they please, figuring out a way to organize projects when starting
 to use the engine can be a little challenging. Because of this, the
 to use the engine can be a little challenging. Because of this, the
-tutorial describes simple workflow which should work as a starting
-point regardless of whether it is used.
+tutorial describes a simple workflow, which should work as a starting
+point, regardless of whether it is used.
 
 
 Additionally, using version control can be challenging, so this
 Additionally, using version control can be challenging, so this
 proposition will include that too.
 proposition will include that too.
@@ -22,14 +22,14 @@ Organization
 Godot is scene-based in nature, and uses the filesystem as-is,
 Godot is scene-based in nature, and uses the filesystem as-is,
 without metadata or an asset database.
 without metadata or an asset database.
 
 
-Unlike other engines, a lot of resources are contained within the scene
+Unlike other engines, many resources are contained within the scene
 itself, so the amount of files in the filesystem is considerably lower.
 itself, so the amount of files in the filesystem is considerably lower.
 
 
 Considering that, the most common approach is to group assets as close
 Considering that, the most common approach is to group assets as close
 to scenes as possible; when a project grows, it makes it more
 to scenes as possible; when a project grows, it makes it more
 maintainable.
 maintainable.
 
 
-As an example, one can usually place into a single folder their basic assets
+As an example, one can usually place into a single folder their basic assets,
 such as sprite images, 3D model meshes, materials, and music, etc.
 such as sprite images, 3D model meshes, materials, and music, etc.
 They can then use a separate folder to store built levels that use them.
 They can then use a separate folder to store built levels that use them.