You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-11 13:10:58 +00:00
Minor typo and docs URL fixes
This commit is contained in:
@@ -13,6 +13,6 @@ func test():
|
||||
print("hello %.02f" % 0.123456 == "hello 0.12")
|
||||
|
||||
# Dynamic padding:
|
||||
# <https://docs.godotengine.org/en/stable/getting_started/scripting/gdscript/gdscript_format_string.html#dynamic-padding>
|
||||
# https://docs.godotengine.org/en/latest/getting_started/scripting/gdscript/gdscript_format_string.html#dynamic-padding
|
||||
print("hello %*.*f" % [7, 3, 0.123456] == "hello 0.123")
|
||||
print("hello %0*.*f" % [7, 3, 0.123456] == "hello 000.123")
|
||||
|
||||
Reference in New Issue
Block a user