Skip to content

Commit b06fb85

Browse files
committed
AS Feedback
1 parent 8a80fee commit b06fb85

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

source/data-formats.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Specialized Data Formats
3030
Overview
3131
--------
3232

33-
You can use several types of specialized data formats in your {+driver-short+}
33+
You can use several types of specialized document data formats in your {+driver-short+}
3434
application. To learn how to work with these data formats, see the following
3535
sections:
3636

source/data-formats/bson.txt

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,27 +14,27 @@ Overview
1414
--------
1515

1616
In this guide, you can learn about the BSON data format, how MongoDB
17-
uses it, and how to install the BSON library independently of the
18-
{+driver-short+}.
17+
uses BSON to organize and store data, and how to install the BSON library independently of
18+
the {+driver-short+}.
1919

2020
BSON Data Format
2121
----------------
2222

2323
**BSON**, or Binary JSON, is the data format that MongoDB uses to organize
2424
and store data. This data format includes all JSON data structure types and
25-
adds support for types including dates, differently-sized integers, ObjectIds, and
26-
binary data. For a complete list of supported types, see the
27-
:manual:`BSON Types </reference/bson-types>` server manual page.
25+
adds support for types including dates, differently-sized integers (32-bit and 64-bit),
26+
ObjectIds, and binary data. For a complete list of supported types, see the
27+
:manual:`BSON Types </reference/bson-types>` in the {+mdb-server+} documentation.
2828

29-
The binary format is not human-readable, but you can use the
29+
BSON is not human-readable, but you can use the
3030
:ref:`BSON library <install-bson-library>` to convert it to the human-readable JSON
3131
representation. You can read more about the relationship between these
3232
formats in the :website:`JSON and BSON </json-and-bson>` guide on the MongoDB website.
3333

3434
MongoDB and BSON
3535
----------------
3636

37-
You can use BSON data with your {+driver-short+} application by using one of the
37+
You can work with BSON data in your {+driver-short+} application by using one of the
3838
following object types that implements the `BSON interface <{+java-api+}/apidocs/bson/org/bson/conversions/Bson.html>`__:
3939

4040
- `Document <{+java-api+}/apidocs/bson/org/bson/Document.html>`__ (BSON library package)
@@ -63,8 +63,7 @@ your project.
6363

6464
We recommend that you use the `Maven <https://maven.apache.org/>`__ or
6565
`Gradle <https://gradle.org/>`__ build automation tool to manage your {+language+}
66-
project's dependencies. Select from the following tabs to see the dependency declaration
67-
for that tool:
66+
project's dependencies.
6867

6968
.. tabs::
7069

0 commit comments

Comments
 (0)