diff --git a/API-Text.md b/API-Text.md index 918e157..9eda705 100644 --- a/API-Text.md +++ b/API-Text.md @@ -9,7 +9,6 @@ This API provides some more general operations on strings and data serialization - `text.trim(value: string): string` Removes whitespace characters from the start and end of a string. - `text.serialize(value: any except functions): string` - Generates a string from an object that can be parsed again using `text.unserialize`. The generated output is essentially Lua code. Supports basic types (nil, boolean, number, string) and tables without cycles (will error out when cycles are detected). Properly handles NaN values and infinity. - This function can be useful for sending messages via a network card. + Deprecated, use [[`serialization.serialize`|API/Serialization]]. - `text.unserialize(value: string): any` - Restores an object previously saved with `text.serialize`. \ No newline at end of file + Deprecated, use [[`serialization.unserialize`|API/Serialization]]. \ No newline at end of file