From 02b7b213e814668ba84d64bedfa8e3374914e9d0 Mon Sep 17 00:00:00 2001 From: Antikore Date: Thu, 29 Feb 2024 11:55:38 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Fix=20typo=20on=20word=20'?= =?UTF-8?q?success'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/__file_compressed/__file_compressed.gml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/__file_compressed/__file_compressed.gml b/scripts/__file_compressed/__file_compressed.gml index 48eeb45..a912f44 100644 --- a/scripts/__file_compressed/__file_compressed.gml +++ b/scripts/__file_compressed/__file_compressed.gml @@ -10,7 +10,7 @@ Available on Github at https://github.com/AntikoreDev/file-compressed * @desc Loads the struct from a file saved previously with `file_compressed_save` * * @arg {string} filename Name of the file to load - * @arg {any} default Value to return if loaded unsucessfully, defaults to undefined + * @arg {any} default Value to return if loaded unsuccessfully, defaults to undefined * * @return {struct} JSON containing the data from the file or default if couldn't load correctly */ @@ -63,7 +63,7 @@ function file_compressed_load_async(_filename){ * @desc Parses the data from a buffer loaded with `file_compressed_load_async` and converts it to an struct * * @arg {real} buffer Buffer ID to parse - * @arg {any} default Value to return if loaded unsucessfully, defaults to undefined + * @arg {any} default Value to return if loaded unsuccessfully, defaults to undefined * * @return {struct} JSON containing the data from the buffer or default if couldn't load correctly */ @@ -98,7 +98,7 @@ function file_compressed_load_parse(_buffer, _default = undefined){ * @arg {string} filename The file to save the file to * @arg {struct} data The json data to save onto the file * - * @return {boolean} true if sucess, otherwise false + * @return {boolean} true if success, otherwise false */ function file_compressed_save(_filename, _data){