classref: Sync with current master branch (809a982)

This commit is contained in:
Godot Organization
2023-05-20 03:19:15 +00:00
parent 8e45b3c141
commit 167c58e46f
39 changed files with 1289 additions and 741 deletions
+1 -1
View File
@@ -823,7 +823,7 @@ Decodes a hexadecimal string as a :ref:`PackedByteArray<class_PackedByteArray>`.
.. code-tab:: csharp
var text = "hello world";
var encoded = text.ToUtf8Buffer().HexEncode(); # outputs "68656c6c6f20776f726c64"
var encoded = text.ToUtf8Buffer().HexEncode(); // outputs "68656c6c6f20776f726c64"
GD.Print(buf.HexDecode().GetStringFromUtf8());