summaryrefslogtreecommitdiffhomepage
path: root/gdscript.html.markdown
diff options
context:
space:
mode:
authorMarcel Ribeiro Dantas, Ph.D <ribeirodantasdm@gmail.com>2022-07-31 18:40:45 +0200
committerGitHub <noreply@github.com>2022-07-31 18:40:45 +0200
commit506cf01c67f7d363c157257b0702f30778c2a15b (patch)
tree48234a6aee08044a9dbe20e50c7e877d8bce0a79 /gdscript.html.markdown
parent46358c59e999e193bccd41b46688becc0b40e5fa (diff)
parentfd8d3b8960eff57d710909431704dda563335591 (diff)
Merge pull request #4326 from zacryol/fix-its
[GDScript/en] Fix usage of `its`
Diffstat (limited to 'gdscript.html.markdown')
-rw-r--r--gdscript.html.markdown2
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: