From f462317925b3706a4184ba468a353e573a4877c5 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Mon, 2 Mar 2015 16:17:28 +0100 Subject: for functions that can be called as operators, show operator being implemented --- src/Formats/StructuredFormatService.kt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/Formats') diff --git a/src/Formats/StructuredFormatService.kt b/src/Formats/StructuredFormatService.kt index 41deeed0..b3d1463e 100644 --- a/src/Formats/StructuredFormatService.kt +++ b/src/Formats/StructuredFormatService.kt @@ -114,6 +114,9 @@ public abstract class StructuredFormatService(locationService: LocationService, } // All items have exactly the same documentation, so we can use any item to render it val item = items.first() + item.details(DocumentationNode.Kind.OverloadGroupNote).forEach { + to.append(formatText(location, it.content)) + } to.append(formatText(location, item.content.summary)) appendDescription(location, to, item) appendLine(to) -- cgit