diff options
author | Paul Joannon <437025+paulloz@users.noreply.github.com> | 2021-03-18 12:04:28 +0100 |
---|---|---|
committer | Paul Joannon <hello@pauljoannon.com> | 2021-03-19 13:21:20 +0100 |
commit | 8455e901f39c90d581aeb8913640219fb8754e77 (patch) | |
tree | 9b4c919e2b8b2637ca7b914f74aaea73e198fa75 /doc/classes/PackedByteArray.xml | |
parent | 3b380f4cdcfd54ebb1f4b32654618502571a43df (diff) | |
download | redot-engine-8455e901f39c90d581aeb8913640219fb8754e77.tar.gz |
class reference proofreading
Diffstat (limited to 'doc/classes/PackedByteArray.xml')
-rw-r--r-- | doc/classes/PackedByteArray.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/PackedByteArray.xml b/doc/classes/PackedByteArray.xml index 34a55d4fe7..3c7f0f4fad 100644 --- a/doc/classes/PackedByteArray.xml +++ b/doc/classes/PackedByteArray.xml @@ -81,7 +81,7 @@ </argument> <description> Returns a new [PackedByteArray] with the data decompressed. Set the compression mode using one of [enum File.CompressionMode]'s constants. [b]This method only accepts gzip and deflate compression modes.[/b] - This method is potentially slower than [code]decompress[/code], as it may have to re-allocate it's output buffer multiple times while decompressing, where as [code]decompress[/code] knows it's output buffer size from the beginning. + This method is potentially slower than [code]decompress[/code], as it may have to re-allocate its output buffer multiple times while decompressing, whereas [code]decompress[/code] knows it's output buffer size from the beginning. GZIP has a maximal compression ratio of 1032:1, meaning it's very possible for a small compressed payload to decompress to a potentially very large output. To guard against this, you may provide a maximum size this function is allowed to allocate in bytes via [code]max_output_size[/code]. Passing -1 will allow for unbounded output. If any positive value is passed, and the decompression exceeds that amount in bytes, then an error will be returned. </description> </method> |