Browse Source

Merge pull request #82 from Gael-Lopes-Da-Silva/patch-1

spelling mistake correction
Jorn Theunissen 3 years ago
parent
commit
aea5d5a79e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      en/tutorials/csharpbeginner/get-component.md

+ 1 - 1
en/tutorials/csharpbeginner/get-component.md

@@ -2,7 +2,7 @@
 You can find this sample in the tutorial project: **Menu** →  **Getting a component** 
 
 ## Explanation
-This C# beginner tutorial covers how to get and remove components. Components are the of the most important concepts in Stride. Every entity in the scene has a list of components. The transform for instance is also a component. When we make custom scripts that inherit from SyncScript or AsyncScript, they turn into Components that we can attach to entities. We can attach these components to entities by using the editor or we can attach them by code.
+This C# beginner tutorial covers how to get and remove components. Components are one of the most important concepts in Stride. Every entity in the scene has a list of components. The transform for instance is also a component. When we make custom scripts that inherit from SyncScript or AsyncScript, they turn into Components that we can attach to entities. We can attach these components to entities by using the editor or we can attach them by code.
 
 ![Get a component](media/getting-a-component.png)