diff options
author | Marcel Ribeiro Dantas, Ph.D <ribeirodantasdm@gmail.com> | 2022-07-31 18:40:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-31 18:40:45 +0200 |
commit | 506cf01c67f7d363c157257b0702f30778c2a15b (patch) | |
tree | 48234a6aee08044a9dbe20e50c7e877d8bce0a79 | |
parent | 46358c59e999e193bccd41b46688becc0b40e5fa (diff) | |
parent | fd8d3b8960eff57d710909431704dda563335591 (diff) |
Merge pull request #4326 from zacryol/fix-its
[GDScript/en] Fix usage of `its`
-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: |