From 1572ae3532c4a595af554d8b6e20db7da953294b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20N=C3=BCcke?= Date: Thu, 6 Mar 2014 00:46:58 -0800 Subject: [PATCH] Updated API Text (markdown) --- API-Text.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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