From b38654fe4f98964a63a4819023332cec03ce6ca1 Mon Sep 17 00:00:00 2001 From: Hollow Man Date: Mon, 23 Nov 2020 17:05:13 +0800 Subject: fix grammar error (#1639) an -> a referring to https://www.quora.com/Which-is-the-correct-grammar-usage-a-unique-or-an-unique --- docs/src/doc/docs/developer_guide/data_model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/src') diff --git a/docs/src/doc/docs/developer_guide/data_model.md b/docs/src/doc/docs/developer_guide/data_model.md index 3f8d4645..ce0b98ad 100644 --- a/docs/src/doc/docs/developer_guide/data_model.md +++ b/docs/src/doc/docs/developer_guide/data_model.md @@ -12,7 +12,7 @@ The main building block of this model is `Documentable` class, that is a base cl There are three non-documentable classes important for the model: `DRI`, `SourceSetDependent` and `ExtraProperty`. -* `DRI` (Dokka Resource Identifier) is an unique value that identifies specific `Documentable`. All references to other documentables different than direct ownership are described using DRIs. For example, `DFunction` with parameter of type `X` has only X's DRI, not the actual reference to X's Documentable object. +* `DRI` (Dokka Resource Identifier) is a unique value that identifies specific `Documentable`. All references to other documentables different than direct ownership are described using DRIs. For example, `DFunction` with parameter of type `X` has only X's DRI, not the actual reference to X's Documentable object. * `SourceSetDependent` is a map that handles multiplatform data, by connecting platform-specific data, declared with either `expect` or `actual` modifier, to a particular Source Set * `ExtraProperty` is used to store any additional information that falls outside of regular model. It is highly recommended to use extras to provide any additional information when creating custom Dokka plugins. This element is a bit more complex, so you can read more about how to use it below. -- cgit