From 859a3d5784d0038661632331dd293048bcf3f17d Mon Sep 17 00:00:00 2001 From: Pete Bacon Darwin Date: Wed, 23 May 2018 22:15:15 +0100 Subject: [PATCH] build(aio): fix decorator doc "inherited from" heading (#24000) We should not include the package path in the inherited from heading for decorator API docs PR Close #24000 --- .../transforms/templates/api/includes/decorator-overview.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/tools/transforms/templates/api/includes/decorator-overview.html b/aio/tools/transforms/templates/api/includes/decorator-overview.html index 44f06484c3..52c24e8a4f 100644 --- a/aio/tools/transforms/templates/api/includes/decorator-overview.html +++ b/aio/tools/transforms/templates/api/includes/decorator-overview.html @@ -20,7 +20,7 @@ {% for ancestor in doc.extendsClauses %}{% if ancestor.doc %} -

Inherited from {$ ancestor.doc.id $}

+

Inherited from {$ ancestor.doc.name $} decorator

{$ renderOptionsTable(ancestor.doc) $} {% endif %}{% endfor %} {% endmacro %}