authorgravatar for der.teufel.mail@gmail.comKrzysztof Wolicki <der.teufel.mail@gmail.com> 2023-06-18 14:40:15+00:00
committergravatar for der.teufel.mail@gmail.comKrzysztof Wolicki <der.teufel.mail@gmail.com> 2023-06-18 14:41:49+00:00
loge9da87866cf089c8b9936a14a5a3262f54ee3dc0
treeb3766da59af7beb9f51417fa3a26d4818582cc20
parent3180a371e825e58a6aaadabff7350af25978b04e

autodoc: Fix rendering of function arguments named `_`


1 files changed, 3 insertions(+), 0 deletions(-)

lib/docs/main.js+3
...@@ -2375,6 +2375,9 @@ const NAV_MODES = {...@@ -2375,6 +2375,9 @@ const NAV_MODES = {
2375 if (paramName != null) {2375 if (paramName != null) {
2376 // skip if it matches the type name2376 // skip if it matches the type name
2377 if (!shouldSkipParamName(paramValue, paramName)) {2377 if (!shouldSkipParamName(paramValue, paramName)) {
2378 if (paramName === "") {
2379 paramName = "_";
2380 }
2378 payloadHtml += paramName + ": ";2381 payloadHtml += paramName + ": ";
2379 }2382 }
2380 }2383 }