From 1559803c70fbd134b3d707e5a45a9fc4d25a922d Mon Sep 17 00:00:00 2001 From: rxi Date: Fri, 4 Sep 2015 18:59:59 +0100 Subject: [PATCH] Updated README for lume.serialize changes --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b95ca48..beecae6 100644 --- a/README.md +++ b/README.md @@ -329,7 +329,7 @@ f(10, 5) -- Returns 25 ### lume.serialize(x) Serializes the argument `x` into a string which can be loaded again using `lume.deserialize()`. Only booleans, numbers, tables and strings can be -serialized. Circular references are not handled; all nested tables are +serialized. Circular references will result in an error; all nested tables are serialized as unique tables. ```lua lume.serialize({a = "test", b = {1, 2, 3}, false})