aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/data/format/json.lux
diff options
context:
space:
mode:
authorThe Lux Programming Language2018-07-28 15:52:36 -0400
committerGitHub2018-07-28 15:52:36 -0400
commit072849be197dc6bb6007d08bb26be00cc374c744 (patch)
tree522a5ef5077eb4cf10e083a9feec042476626f7b /stdlib/source/lux/data/format/json.lux
parentb14102eaa2a80f51f160ba293ec01928dbe683c3 (diff)
parent168d36d07b48d2d936de24aa69b8464e68992075 (diff)
Merge pull request #46 from LuxLang/change-number-signs
Change number signs
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/data/format/json.lux2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/source/lux/data/format/json.lux b/stdlib/source/lux/data/format/json.lux
index 02c05f5dd..549631f2a 100644
--- a/stdlib/source/lux/data/format/json.lux
+++ b/stdlib/source/lux/data/format/json.lux
@@ -55,7 +55,7 @@
(syntax: #export (json token)
{#.doc (doc "A simple way to produce JSON literals."
(json #1)
- (json 123.456)
+ (json +123.456)
(json "Some text")
(json #null)
(json ["this" "is" "an" "array"])