Minor typo and docs URL fixes
This commit is contained in:
parent
0bc36c8954
commit
491ded1898
8 changed files with 8 additions and 8 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue