From 78bed08b993cb6d9d8021ab4ec720bc5913ca275 Mon Sep 17 00:00:00 2001 From: zigzagdev Date: Wed, 24 Sep 2025 11:13:05 +0900 Subject: [PATCH] fix: unwind page typo change --- .../manual/source/reference/operator/aggregation/unwind.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/manual/manual/source/reference/operator/aggregation/unwind.txt b/content/manual/manual/source/reference/operator/aggregation/unwind.txt index 3ccc39c71cf..84365dfa3ea 100644 --- a/content/manual/manual/source/reference/operator/aggregation/unwind.txt +++ b/content/manual/manual/source/reference/operator/aggregation/unwind.txt @@ -483,7 +483,7 @@ Examples { _id: "1", items: { name: "pens", tags: [ "writing", "office", "school", "stationary" ], price: Decimal128("12.00"), quantity: 5 } } { _id: "1", items: { name: "envelopes", tags: [ "stationary", "office" ], price: Decimal128("19.95"), quantity: 8 } } - { _id: "2", items: { name: "laptop", tags: [ "office", "electronics" ], price: Decimal128("800.00"), quantity": 1 } } + { _id: "2", items: { name: "laptop", tags: [ "office", "electronics" ], price: Decimal128("800.00"), quantity: 1 } } { _id: "2", items: { name: "notepad", tags: [ "stationary", "school" ], price: Decimal128("14.95"), quantity: 3 } } Second Stage @@ -502,7 +502,7 @@ Examples { _id: "2", items: { name: "laptop", tags: "office", price: Decimal128("800.00"), quantity: 1 } } { _id: "2", items: { name: "laptop", tags: "electronics", price: Decimal128("800.00"), quantity: 1 } } { _id: "2", items: { name: "notepad", tags: "stationary", price: Decimal128("14.95"), quantity: 3 } } - { _id: "2", items: { name: "notepad", "ags: "school", price: Decimal128("14.95"), quantity: 3 } } + { _id: "2", items: { name: "notepad", "tags: "school", price: Decimal128("14.95"), quantity: 3 } } Third Stage The :pipeline:`$group` stage groups the documents by the tag and