Skip to content

Commit

Permalink
fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Giallombardo Nathan committed Jun 19, 2024
1 parent b4b55ef commit 2b943da
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/reference/attributes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -472,8 +472,8 @@ used for Couchbase serialization and deserialization as follows:
.. code-block:: ruby

point = Point.new(x: 12, y: 24)
venue = Venue.new(location: point) # This uses the Point#mongoize instance method.
venue = Venue.new(location: {x: 12, y: 24 }) # This uses the Point.mongoize class method.
venue = Venue.new(location: point)
venue = Venue.new(location: {x: 12, y: 24 })

.. _dynamic-attributes:

Expand Down
4 changes: 2 additions & 2 deletions docs/reference/compatibility.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Compatibility
*************

.. default-domain:: mongodb
.. default-domain:: woop

.. contents:: On this page
:local:
Expand All @@ -19,7 +19,7 @@ Ruby Couchbase Driver Compatibility
The following compatibility table specifies the versions of `Ruby driver for
Couchbase Ruby Client <https://docs.couchbase.com/ruby-sdk/current/project-docs/compatibility.html>`_
(the ``couchbase`` gem) supported by the most recent patch releases of the
specified Mongoid versions.
specified CouchbaseOrm versions.

.. note::

Expand Down
2 changes: 1 addition & 1 deletion docs/reference/configuration.txt
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ loads.
ERb Preprocessing
=================

When loading a configuration file, Mongoid processes it with ERb before
When loading a configuration file, CouchabseOrm processes it with ERb before
parsing it as YAML. This allows, for example, constructing the contents of
the configuration file at runtime based on environment variables:

Expand Down
2 changes: 1 addition & 1 deletion docs/schema-configuration.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Schema Configuration
Overview
--------

See the following sections to learn how to configure a schema with Mongoid:
See the following sections to learn how to configure a schema with CouchbaseOrm:

- :ref:`Attributes Definition <attributes>`
- :ref:`Associations <associations>`
Expand Down

0 comments on commit 2b943da

Please sign in to comment.