dlang-community / harbored-mod

A documentation generator for D with support for both DDoc and Markdown.
Boost Software License 1.0
18 stars 14 forks source link

Duplicate params keyword in struct/class description #78

Closed deviator closed 5 years ago

deviator commented 7 years ago
/++ Test struct
    Params:
        BUFFER_SIZE = size of internal buffer storage
 +/
struct X(size_t BUFFER_SIZE)
{
    ubyte[BUFFER_SIZE] buf;
}

describes in docs as

Test struct Params

Parameters
BUFFER_SIZE 
size of internal buffer storage
ghost commented 5 years ago

fixed with most recent dparse

fixed