diff --git a/docs/reference/attributes.txt b/docs/reference/attributes.txt index cbd85ea1..e4b1b88f 100644 --- a/docs/reference/attributes.txt +++ b/docs/reference/attributes.txt @@ -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: diff --git a/docs/reference/compatibility.txt b/docs/reference/compatibility.txt index 8105d6f7..7898db31 100644 --- a/docs/reference/compatibility.txt +++ b/docs/reference/compatibility.txt @@ -5,7 +5,7 @@ Compatibility ************* -.. default-domain:: mongodb +.. default-domain:: woop .. contents:: On this page :local: @@ -19,7 +19,7 @@ Ruby Couchbase Driver Compatibility The following compatibility table specifies the versions of `Ruby driver for Couchbase Ruby Client `_ (the ``couchbase`` gem) supported by the most recent patch releases of the -specified Mongoid versions. +specified CouchbaseOrm versions. .. note:: diff --git a/docs/reference/configuration.txt b/docs/reference/configuration.txt index 97704488..016738ed 100644 --- a/docs/reference/configuration.txt +++ b/docs/reference/configuration.txt @@ -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: diff --git a/docs/schema-configuration.txt b/docs/schema-configuration.txt index 0c65b5c3..19461e48 100644 --- a/docs/schema-configuration.txt +++ b/docs/schema-configuration.txt @@ -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 ` - :ref:`Associations `