diff options
author | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-10-03 23:05:28 +0400 |
---|---|---|
committer | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-10-03 23:05:28 +0400 |
commit | 04135d13e4f1fc41893767b8719e9189cd41617a (patch) | |
tree | c8b4efe0df0dffbe77285eaee07bfe570befcde9 /src/Kotlin/DocumentationContext.kt | |
parent | 71cd87e239ba4ba846eb5da04e45a451b8a840cb (diff) | |
download | dokka-04135d13e4f1fc41893767b8719e9189cd41617a.tar.gz dokka-04135d13e4f1fc41893767b8719e9189cd41617a.tar.bz2 dokka-04135d13e4f1fc41893767b8719e9189cd41617a.zip |
Resolve links to symbols with custom text
Diffstat (limited to 'src/Kotlin/DocumentationContext.kt')
-rw-r--r-- | src/Kotlin/DocumentationContext.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Kotlin/DocumentationContext.kt b/src/Kotlin/DocumentationContext.kt index 649543ac..95c3ded1 100644 --- a/src/Kotlin/DocumentationContext.kt +++ b/src/Kotlin/DocumentationContext.kt @@ -9,9 +9,9 @@ import org.jetbrains.jet.lang.resolve.name.FqName /** * Context for documentation generation. * - * Holds information about relations between nodes and descriptors during documentation generation + * Holds information about relations between [nodes](DocumentationNode) and [descriptors](DeclarationDescriptor) during documentation generation * - * %bindingContext: symbol resolution context + * $bindingContext: symbol resolution context */ public class DocumentationContext(val bindingContext: BindingContext) { val descriptorToNode = hashMapOf<DeclarationDescriptor, DocumentationNode>() |