Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .backportrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
// Required
"repoOwner": "mongodb",
"repoName": "docs-golang",

// the branches available to backport to
"targetBranchChoices": ["master", "v1.11", "v1.10", "v1.9", "v1.8", "v1.7"],

// Optional: automatically merge backport PR
"autoMerge": true,
"autoMergeMethod": "squash"
}
4 changes: 2 additions & 2 deletions source/fundamentals/bson.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Overview
--------

In this guide, you can learn about how the Go Driver handles conversions
between BSON and Go values. The process of converting a Go value to
between BSON and Go types. The process of converting a Go type to
BSON is called **marshalling**, while the reverse process is called **unmarshalling**.

You should read this guide if you want to learn more about how the Go Driver
Expand Down Expand Up @@ -295,7 +295,7 @@ user-defined struct by using methods from the ``bson`` package:
.. note::

You can use the ``Raw`` type to retrieve elements from a BSON
document byte slice without unmarshalling it to a Go value. This can
document byte slice without unmarshalling it to a Go type. This can
be useful if you need to look up individual elements without
unmarshalling the entire BSON document.

Expand Down
4 changes: 2 additions & 2 deletions source/whats-new.txt
Original file line number Diff line number Diff line change
Expand Up @@ -263,11 +263,11 @@ New features of the 1.3 Go driver release include:
What's New in 1.2
-----------------

New features of the 1.2 Go driver release include:
New features of the 1.2 Go driver release include:

- Support for {+csfle-short+}.

- ``bson.MarshalValue`` function, which marshals Go values to BSON.
- ``bson.MarshalValue`` function, which marshals Go types to BSON.

- ``StringCodec``, which allows non-string fields to be decoded into a
String field in a struct.
Expand Down