1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-07-31 03:50:32 +02:00

Merge pull request #4326 from zacryol/fix-its

[GDScript/en] Fix usage of `its`
This commit is contained in:
Marcel Ribeiro Dantas, Ph.D
2022-07-31 18:40:45 +02:00
committed by GitHub

View File

@@ -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: