From 1089340a9eda8616f31b3c96a48c4cf1084ad478 Mon Sep 17 00:00:00 2001 From: Jerel Miller Date: Fri, 5 Jun 2020 12:30:03 -0700 Subject: [PATCH] fix: Visual spacing for method docs with no args --- src/components/FunctionDefinition.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/FunctionDefinition.js b/src/components/FunctionDefinition.js index cee1ea8ab..f8437f591 100644 --- a/src/components/FunctionDefinition.js +++ b/src/components/FunctionDefinition.js @@ -31,8 +31,8 @@ const FunctionDefinition = ({ params, returnValue }) => { /> ))} - {params.length > 0 && ) } - => + {params.length > 0 && )} + => {returnValue.type} );