We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce8e2e5 commit c673412Copy full SHA for c673412
source/tutorial/insert-documents.txt
@@ -171,8 +171,8 @@ See :ref:`write-op-insert-behavior`.
171
.. code-block:: javascript
172
173
db.inventory.insert([
174
- { item: "paper", qty: 100, tags: ["bond", "multipurpose", "white"], size: { h: 8.5, w: 11, uom: "in" } },
175
- { item: "planner", qty: 75, tags: ["blank", "red", "daily"], size: { h: 22.85, w: 30, uom: "cm" } },
+ { item: "paper", qty: 100, tags: ["red", "blank", "plain"], size: { h: 11.69 , w: 16.53, uom: "in" } },
+ { item: "planner", qty: 75, tags: ["blank", "red"], size: { h: 22.85, w: 30, uom: "cm" } },
176
{ item: "postcard", qty: 45, tags: ["blue"], size: { h: 10, w: 15.25, uom: "cm" } }
177
])
178
source/tutorial/query-arrays.txt
@@ -26,8 +26,8 @@ populate the ``inventory`` collection, run the following in the
26
{ item: "mat", qty: 85, tags: ["gray"], dim_cm: [ 27.9, 35.5 ] },
27
{ item: "mousepad", qty: 25, tags: ["gel", "blue"], dim_cm: [ 19, 22.85 ] },
28
{ item: "notebook", qty: 50, tags: ["red", "blank"], dim_cm: [ 14, 21 ] },
29
- { item: "paper", qty: 100, tags: ["red", "blank", "A3"], dim_cm: [ 14, 21 ] },
30
- { item: "planner", qty: 75, tags: [ "blank", "red"], dim_cm: [ 22.85, 30 ] },
+ { item: "paper", qty: 100, tags: ["red", "blank", "plain"], dim_cm: [ 14, 21 ] },
+ { item: "planner", qty: 75, tags: ["blank", "red"], dim_cm: [ 22.85, 30 ] },
31
{ item: "postcard", qty: 45, tags: ["blue"], dim_cm: [ 10, 15.25 ] },
32
{ item: "sketchbook", qty: 80, tags: ["heavy weight", "acid-free"], dim_cm: [ 14, 21 ] },
33
{ item: "sketch pad", qty: 95, tags: ["acid-free", "heavy weight"], dim_cm: [ 22.85, 30.5 ] }
0 commit comments