@@ -174,7 +174,7 @@ auto doc_value = make_document(
174
174
175
175
This `bsoncxx::document::value` type is a read-only object owning
176
176
its own memory. To use it, you must obtain a
177
- [`bsoncxx::document::view`]({{< api3ref classbsoncxx_1_1document_1_1view >}}) using
177
+ [`bsoncxx::document::view`]({{< api3ref classbsoncxx_1_1v__noabi_1_1document_1_1view >}}) using
178
178
the `view()` method:
179
179
180
180
```c++
@@ -183,7 +183,7 @@ auto doc_view = doc_value.view();
183
183
184
184
You can access fields within this document view using ` operator[] ` ,
185
185
which will return a
186
- [ ` bsoncxx::document::element ` ] ({{< api3ref classbsoncxx_1_1document_1_1element >}})
186
+ [ ` bsoncxx::document::element ` ] ({{< api3ref classbsoncxx_1_1v __ noabi_1_1document_1_1element >}})
187
187
instance. For example, the following will extract the ` name ` field whose
188
188
value is a string:
189
189
@@ -197,7 +197,7 @@ assert(0 == name.compare("MongoDB"));
197
197
If the value in the `name` field is not a string and you do not
198
198
include a type guard as seen in the preceding example, this code will
199
199
throw an instance of
200
- [`bsoncxx::exception`]({{< api3ref classbsoncxx_1_1exception >}}).
200
+ [`bsoncxx::exception`]({{< api3ref classbsoncxx_1_1v__noabi_1_1exception >}}).
201
201
202
202
## Insert Documents
203
203
@@ -280,7 +280,7 @@ To query the collection, use the collection’s `find()` and
280
280
` find() ` will return an instance of
281
281
[ ` mongocxx::cursor ` ] ({{< api3ref classmongocxx_1_1v__ noabi_1_1cursor >}}),
282
282
while ` find_one() ` will return an instance of
283
- ` std::optional< ` [ ` bsoncxx::document::value ` ] ({{< api3ref classbsoncxx_1_1document_1_1value >}})` > `
283
+ ` std::optional< ` [ ` bsoncxx::document::value ` ] ({{< api3ref classbsoncxx_1_1v __ noabi_1_1document_1_1value >}})` > `
284
284
285
285
You can call either method with an empty document to query all documents
286
286
in a collection, or pass a filter to query for documents that match the
0 commit comments