diff options
Diffstat (limited to 'gdscript.html.markdown')
-rw-r--r-- | gdscript.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdscript.html.markdown b/gdscript.html.markdown index 93f49ba6..0bfac26a 100644 --- a/gdscript.html.markdown +++ b/gdscript.html.markdown @@ -95,7 +95,7 @@ func doing_math(): func control_flow(): x = 8 y = 2 # y was originally a float, - # but we can change it's type to int + # but we can change its type to int # using the power of dynamic typing! if x < y: |