From 3150958faa7cc006b025605dd93ca4e0bafcf3b9 Mon Sep 17 00:00:00 2001 From: Valeri Karpov Date: Sun, 3 Feb 2019 10:50:36 -0500 Subject: [PATCH] docs(api): dont display type if method or function --- docs/api.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api.jade b/docs/api.jade index 8813a06aeee..ead8c9c356b 100644 --- a/docs/api.jade +++ b/docs/api.jade @@ -58,7 +58,7 @@ block content h5 Returns: ul li «#{prop.return.types}» !{prop.return.description} - if prop.type != null + if prop.type != null && prop.type !== 'method' && prop.type !== 'function' h5 Type: ul li «#{prop.type}»