-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make many function signatures in the docs better match how they were registered. other doc cleanup, such as giving c_debug_message's parameter a datatype.
- Loading branch information
1 parent
b338dbd
commit b5924d7
Showing
36 changed files
with
77 additions
and
79 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Data Manipulation/Classes/json_object/Methods/exists.nvgt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Data Manipulation/Classes/json_object/Methods/remove.nvgt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Data Manipulation/Classes/json_object/Methods/set.nvgt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Data Manipulation/Classes/json_object/Operators/get_opIndex.nvgt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Data Manipulation/Classes/json_object/Operators/opCall.nvgt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Data Manipulation/Classes/json_object/Operators/set_opIndex.nvgt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
doc/src/references/builtin/Data Manipulation/Classes/pack/methods/add_file.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
doc/src/references/builtin/Data Manipulation/Classes/pack/methods/add_memory.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Data Manipulation/Classes/pack/methods/delete_file.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# delete_file | ||
Attempt to remove a file from a pack. | ||
|
||
`bool pack::delete_file(string filename);` | ||
`bool pack::delete_file(const string&in filename);` | ||
|
||
## Arguments: | ||
* string filename: the name of the file to be deleted. | ||
* const string&in filename: the name of the file to be deleted. | ||
|
||
## Returns: | ||
bool: true if the file was successfully deleted, false otherwise. |
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Data Manipulation/Classes/pack/methods/file_exists.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# file_exists | ||
Query whether or not a file exists in your pack. | ||
|
||
`bool pack::file_exists(string filename);` | ||
`bool pack::file_exists(const string&in filename);` | ||
|
||
## Arguments: | ||
* string filename: the name of the file to query. | ||
* const string&in filename: the name of the file to query. | ||
|
||
## Returns: | ||
bool: true if the file exists in the pack, false if not. |
4 changes: 2 additions & 2 deletions
4
...rc/references/builtin/Data Manipulation/Classes/pack/methods/get_file_offset.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Data Manipulation/Classes/pack/methods/get_file_size.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# get_file_size | ||
Returns the size of a particula file in the pack. | ||
|
||
`uint pack::get_file_size(string filename);` | ||
`uint pack::get_file_size(const string&in filename);` | ||
|
||
## Arguments: | ||
* string filename: the name of the file to query the size of. | ||
* const string&in filename: the name of the file to query the size of. | ||
|
||
## Returns: | ||
uint: the size of the file (in bytes), or 0 if no file with that name was found. |
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Data Manipulation/Classes/pack/methods/open.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Data Manipulation/Classes/pack/methods/read_file.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...eferences/builtin/Data Manipulation/Classes/pack/methods/set_pack_identifier.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Data Manipulation/Classes/regexp/!regexp.nvgt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
doc/src/references/builtin/Data Manipulation/Classes/regexp/methods/match.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Data Manipulation/Functions/character_to_ascii.nvgt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
doc/src/references/builtin/Data Manipulation/Functions/join.nvgt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...rc/references/builtin/Data Manipulation/Functions/pack_set_global_identifier.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
doc/src/references/builtin/Data Manipulation/Functions/regexp_match.nvgt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Data Manipulation/Functions/string_base32_decode.nvgt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Data Manipulation/Functions/string_base32_encode.nvgt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Data Manipulation/Functions/string_base32_normalize.nvgt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Data Manipulation/Functions/string_base64_decode.nvgt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Data Manipulation/Functions/string_base64_encode.nvgt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Profiling and Debugging/Functions/c_debug_message.nvgt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Profiling and Debugging/Functions/throw.nvgt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Text-To-Speech/Functions/screen_reader_braille.nvgt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Text-To-Speech/Functions/screen_reader_output.nvgt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Text-To-Speech/Functions/screen_reader_speak.nvgt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Text-To-Speech/classes/tts_voice/Methods/speak.nvgt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
doc/src/references/builtin/Text-To-Speech/classes/tts_voice/Methods/speak_interrupt.nvgt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.