mirror of
https://github.com/overte-org/overte.git
synced 2025-04-10 12:32:50 +02:00
Fixed per code review
This commit is contained in:
parent
75000d9a79
commit
761a922951
1 changed files with 1 additions and 2 deletions
|
@ -133,8 +133,7 @@ function setDocletKindToTitle(doclet, tag) {
|
|||
function setDocletNameToValue(doclet, tag) {
|
||||
if (tag.value && tag.value.description) { // as in a long tag
|
||||
doclet.addTag('name', tag.value.description);
|
||||
}
|
||||
else if (tag.text) { // or a short tag
|
||||
} else if (tag.text) { // or a short tag
|
||||
doclet.addTag('name', tag.text);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue