From f549fd18b56c95ff1c230e0c379a7b811d0a817a Mon Sep 17 00:00:00 2001 From: Franz van Betteraey Date: Wed, 11 Sep 2019 21:14:21 +0200 Subject: [PATCH] DATAMONGO-2361 - Fix @Document reference documentation. Original pull request: #787. --- src/main/asciidoc/reference/mapping.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/asciidoc/reference/mapping.adoc b/src/main/asciidoc/reference/mapping.adoc index 1338485ae..da2b7a58c 100644 --- a/src/main/asciidoc/reference/mapping.adoc +++ b/src/main/asciidoc/reference/mapping.adoc @@ -408,7 +408,7 @@ The MappingMongoConverter can use metadata to drive the mapping of objects to do * `@Id`: Applied at the field level to mark the field used for identity purpose. * `@MongoId`: Applied at the field level to mark the field used for identity purpose. Accepts an optional `FieldType` to customize id conversion. -* `@Document`: Applied at the class level to indicate this class is a candidate for mapping to the database. You can specify the name of the collection where the database will be stored. +* `@Document`: Applied at the class level to indicate this class is a candidate for mapping to the database. You can specify the name of the collection where the data will be stored. * `@DBRef`: Applied at the field to indicate it is to be stored using a com.mongodb.DBRef. * `@Indexed`: Applied at the field level to describe how to index the field. * `@CompoundIndex` (repeatable): Applied at the type level to declare Compound Indexes.