documentationjs / documentationjs/documentation
Namespace declaration doesn't work as expected
- Dominant language
- JavaScript
- Stars
- 5.8k
- Forks
- 481
- PR merge metrics
- No merged PRs in 30d
Description
Given the following input:
``` js
/**
* Utilities for client and server.
* @namespace utils
*/
/**
* Handles a WebSocket message, forwarding it to the given EventEmitter.
* @memberof utils
* @param {EventEmitter} eventEmitter EventEmitter to forward the message to.
* @param {Object} data Full message data.
* @param {Object} client Sender of the message.
*/
export function handleMessage(eventEmitter, data, client) {
// ...
}
```
The following HTML documentation output gets generated:

I marked the unnecessarily included part with red.
Contributor guide
Assessment
This issue has not been assessed yet.