From 931e3087c3fe53767ac322e35ef8a8772ab6c996 Mon Sep 17 00:00:00 2001 From: DeeJayLSP <60024671+DeeJayLSP@users.noreply.github.com> Date: Thu, 3 Jun 2021 19:25:25 -0300 Subject: [PATCH] Change text to avoid use of first person in Static typing in GDScript (#4953) --- tutorials/scripting/gdscript/static_typing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/scripting/gdscript/static_typing.rst b/tutorials/scripting/gdscript/static_typing.rst index 408e8f8cc..004843fe1 100644 --- a/tutorials/scripting/gdscript/static_typing.rst +++ b/tutorials/scripting/gdscript/static_typing.rst @@ -248,7 +248,7 @@ Typed or dynamic: stick to one style ------------------------------------ Typed GDScript and dynamic GDScript can coexist in the same project. But -I recommend to stick to either style for consistency in your codebase, +it's recommended to stick to either style for consistency in your codebase, and for your peers. It's easier for everyone to work together if you follow the same guidelines, and faster to read and understand other people's code.