Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RUBY-3393: Rename BSON tutorial page #2832

Merged
merged 1 commit into from
Feb 8, 2024
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
4 changes: 2 additions & 2 deletions docs/index.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ BSON
====

The Ruby BSON implementation is packaged in a separate gem with C and
Java extensions for speed depending on the runtime enviroment.
Java extensions for speed depending on the runtime environment.

For reference on the Ruby BSON gem, see the :doc:`/tutorials/bson-v4`.
For reference on the Ruby BSON gem, see the :doc:`/tutorials/bson`.

Object Mappers
==============
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/crud-operations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Specify a ``Decimal128`` number
.. versionadded:: 3.4

:manual:`Decimal128</tutorial/model-monetary-data>` is a
:doc:`BSON datatype </tutorials/bson-v4>`
:doc:`BSON datatype </tutorials/bson>`
that employs 128-bit decimal-based floating-point values capable
of emulating decimal rounding with exact precision. This
functionality is intended for applications that handle
Expand Down
2 changes: 1 addition & 1 deletion docs/release-notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ This release includes the following new features:
5.1/5.2/5.3) or newer to use the ``count`` command when API strict is enabled,
or avoid setting ``api_strict: true`` when constructing ``Mongo::Client``
instances with server versions 5.0.0-5.0.7 and 5.1.0-5.3.1.
- The DBRef class has been moved to bson-ruby. For backwards compatibility,
- The DBRef class has been moved to ``bson-ruby``. For backwards compatibility,
``BSON::DBRef`` is aliased as ``Mongo::DBRef``. The ``BSON::DBRef`` class
derives from ``BSON::Document``, unlike the legacy ``Mongo::DBRef`` which
derived from ``Object``. ``BSON::DBRef`` retains all attributes passed into
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ operations available in the Ruby driver.

tutorials/quick-start
tutorials/common-errors
tutorials/bson-v4
tutorials/bson

Loading