aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJack Mitchell <jack.mitchell@dbbroadcast.co.uk>2012-04-26 14:38:37 +0100
committerPetri Lehtinen <petri@digip.org>2012-04-26 22:10:46 +0300
commitc7f86abf6d1f96c0fce0b0ab5be5a74972ae84f5 (patch)
treea7d4e3bcd32e7ccf88bfe6285752a80108010741 /doc
parent42bc7a3c50e04a44765809a33531539350b37a77 (diff)
downloadjansson-c7f86abf6d1f96c0fce0b0ab5be5a74972ae84f5.zip
jansson-c7f86abf6d1f96c0fce0b0ab5be5a74972ae84f5.tar.gz
jansson-c7f86abf6d1f96c0fce0b0ab5be5a74972ae84f5.tar.bz2
fix slight typo in json_pack apiref example
Fixes #73.
Diffstat (limited to 'doc')
-rw-r--r--doc/apiref.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/apiref.rst b/doc/apiref.rst
index 1c3a85b..d6f451c 100644
--- a/doc/apiref.rst
+++ b/doc/apiref.rst
@@ -1073,7 +1073,7 @@ More examples::
json_pack("{s:i, s:i}", "foo", 42, "bar", 7);
/* Build the JSON array [[1, 2], {"cool": true}] */
- json_pack("[[i,i],{s:b]]", 1, 2, "cool", 1);
+ json_pack("[[i,i],{s:b}]", 1, 2, "cool", 1);
.. _apiref-unpack: