Commit a7fa922e by Wes Freeman

fixing spacing in readme.

parent 5aa8e065
...@@ -67,7 +67,7 @@ One can apply a "maxDepth" constraint, which limits the depth variety will recur ...@@ -67,7 +67,7 @@ One can apply a "maxDepth" constraint, which limits the depth variety will recur
The default will traverse all the way to the bottom of that structure: The default will traverse all the way to the bottom of that structure:
$ mongo test --eval "var collection = 'users'" variety.js $ mongo test --eval "var collection = 'users'" variety.js
... ...
{ "_id" : { "key" : "someNestedObject" }, "value" : { "types" : [ "Object" ] }, "totalOccurrences" : 2, "percentContaining" : 33.33333333333333 } { "_id" : { "key" : "someNestedObject" }, "value" : { "types" : [ "Object" ] }, "totalOccurrences" : 2, "percentContaining" : 33.33333333333333 }
...@@ -77,7 +77,7 @@ The default will traverse all the way to the bottom of that structure: ...@@ -77,7 +77,7 @@ The default will traverse all the way to the bottom of that structure:
{ "_id" : { "key" : "someNestedObject.a.b.c.d" }, "value" : { "types" : [ "Object" ] }, "totalOccurrences" : 2, "percentContaining" : 33.33333333333333 } { "_id" : { "key" : "someNestedObject.a.b.c.d" }, "value" : { "types" : [ "Object" ] }, "totalOccurrences" : 2, "percentContaining" : 33.33333333333333 }
{ "_id" : { "key" : "someNestedObject.a.b.c.d.e" }, "value" : { "types" : [ "Number" ] }, "totalOccurrences" : 2, "percentContaining" : 33.33333333333333 } { "_id" : { "key" : "someNestedObject.a.b.c.d.e" }, "value" : { "types" : [ "Number" ] }, "totalOccurrences" : 2, "percentContaining" : 33.33333333333333 }
$ mongo test --eval "var collection = 'users', maxDepth = 3" variety.js $ mongo test --eval "var collection = 'users', maxDepth = 3" variety.js
... ...
{ "_id" : { "key" : "someNestedObject" }, "value" : { "types" : [ "Object" ] }, "totalOccurrences" : 2, "percentContaining" : 33.33333333333333 } { "_id" : { "key" : "someNestedObject" }, "value" : { "types" : [ "Object" ] }, "totalOccurrences" : 2, "percentContaining" : 33.33333333333333 }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment