Skip to content

Commit

Permalink
✏️ Fix typo on word 'success'
Browse files Browse the repository at this point in the history
  • Loading branch information
AntikoreDev committed Feb 29, 2024
1 parent b5fab20 commit 02b7b21
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/__file_compressed/__file_compressed.gml
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down Expand Up @@ -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
*/
Expand Down Expand Up @@ -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){

Expand Down

0 comments on commit 02b7b21

Please sign in to comment.