mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Standardize all "Prints" comments in documentation
This commit is contained in:
@@ -366,11 +366,11 @@
|
||||
[codeblocks]
|
||||
[gdscript]
|
||||
var array = PackedByteArray([11, 46, 255])
|
||||
print(array.hex_encode()) # Prints: 0b2eff
|
||||
print(array.hex_encode()) # Prints "0b2eff"
|
||||
[/gdscript]
|
||||
[csharp]
|
||||
byte[] array = [11, 46, 255];
|
||||
GD.Print(array.HexEncode()); // Prints: 0b2eff
|
||||
GD.Print(array.HexEncode()); // Prints "0b2eff"
|
||||
[/csharp]
|
||||
[/codeblocks]
|
||||
</description>
|
||||
|
||||
Reference in New Issue
Block a user