aboutsummaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authorHollow Man <hollowman@hollowman.ml>2020-11-23 17:05:13 +0800
committerGitHub <noreply@github.com>2020-11-23 10:05:13 +0100
commitb38654fe4f98964a63a4819023332cec03ce6ca1 (patch)
treee308c2377729714408f0bab3bb5d3604917b9329 /docs/src
parenta819d43c2f8366ca5bb569f915df376dcd1f8e24 (diff)
downloaddokka-b38654fe4f98964a63a4819023332cec03ce6ca1.tar.gz
dokka-b38654fe4f98964a63a4819023332cec03ce6ca1.tar.bz2
dokka-b38654fe4f98964a63a4819023332cec03ce6ca1.zip
fix grammar error (#1639)
an -> a referring to https://www.quora.com/Which-is-the-correct-grammar-usage-a-unique-or-an-unique
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/doc/docs/developer_guide/data_model.md2
1 files changed, 1 insertions, 1 deletions
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.