summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles.Forsyth <devnull@localhost>2007-01-24 14:40:32 +0000
committerCharles.Forsyth <devnull@localhost>2007-01-24 14:40:32 +0000
commit4041acb435091b76d89032663cc48f4fdeb6de5b (patch)
treef9a235f1e3512969812dbc6f3ffb680548197b4d
parent27e20f1f16ef64919cd0cbc8bc9b747a1eb76d82 (diff)
minor changes to json(2)
-rw-r--r--man/2/json10
1 files changed, 5 insertions, 5 deletions
diff --git a/man/2/json b/man/2/json
index 6641bca2..7443b0e4 100644
--- a/man/2/json
+++ b/man/2/json
@@ -173,6 +173,7 @@ The other operations are:
.IB v .copy()
Return a (reference to) a copy of value
.IR v .
+The copying is not recursive.
.TP
.IB v .eq( w )
Return true if the values of
@@ -182,7 +183,7 @@ and
are equal, including the values of corresponding subcomponents, recursively
.TP
.IB v .get( mem )
-Return the value associated with member
+Return the value associated with the member named
.I mem
in
.IR v ;
@@ -191,7 +192,7 @@ return null if there is none.
.IB v .set( mem,\ value )
Adds or changes the
.I value
-associated with
+associated with the member named
.I mem
in
.IR v ,
@@ -202,9 +203,8 @@ raises exception
otherwise).
.TP
.IB v .text()
-Return a printable representation of the value
-.IR v ,
-mainly intended for debugging and tracing.
+Return a string containing the JSON representation of
+.IR v .
.SH SOURCE
.B /appl/lib/json.b
.SH SEE ALSO