Standardize all "Prints" comments in documentation
This commit is contained in:
parent
0f95e9f8e6
commit
ca4b29b18d
19 changed files with 104 additions and 97 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue