0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 15:06:33 +01:00

Use more beautiful object syntax in docs

This commit is contained in:
Ryan Dahl 2010-02-25 18:58:59 -08:00
parent 3497da370b
commit c219571eac

View File

@ -113,11 +113,10 @@ What platform you're running on. +"linux2"+, +"darwin"+, etc.
Returns the memory usage of the Node process. It looks like this
+
----------------------
{
"rss": 4935680,
"vsize": 41893888,
"heapTotal": 1826816,
"heapUsed": 650472
{ rss: 4935680
, vsize: 41893888
, heapTotal: 1826816
, heapUsed: 650472
}
----------------------
+
@ -906,11 +905,10 @@ If you would like to parse the URL into its parts, you can use
+
----------------------------------------
node> require("url").parse("/status?name=ryan")
{
"href": "/status?name=ryan",
"search": "?name=ryan",
"query": "name=ryan",
"pathname": "/status"
{ href: '/status?name=ryan'
, search: '?name=ryan'
, query: 'name=ryan'
, pathname: '/status'
}
----------------------------------------
+
@ -920,13 +918,10 @@ you can use the +require("querystring").parse+ function, or pass
+
----------------------------------------
node> require("url").parse("/status?name=ryan", true)
{
"href": "/status?name=ryan",
"search": "?name=ryan",
"query": {
"name": "ryan"
},
"pathname": "/status"
{ href: '/status?name=ryan'
, search: '?name=ryan'
, query: { name: 'ryan' }
, pathname: '/status'
}
----------------------------------------
+
@ -1695,13 +1690,7 @@ Normalize an array of path parts, taking care of +".."+ and +"."+ parts. Exampl
path.normalizeArray(["",
"foo", "bar", "baz", "asdf", "quux", ".."])
// returns
[
"",
"foo",
"bar",
"baz",
"asdf"
]
[ '', 'foo', 'bar', 'baz', 'asdf' ]
------------------------------------
+