Add missing parameters in function documentation
This commit is contained in:
parent
649ee08e62
commit
d7737c0da5
|
@ -73,10 +73,13 @@ struct TokenFormatter(OutputRange)
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Params:
|
* Params:
|
||||||
|
* rawSource = ?
|
||||||
* tokens = the tokens to format
|
* tokens = the tokens to format
|
||||||
|
* depths = ?
|
||||||
* output = the output range that the code will be formatted to
|
* output = the output range that the code will be formatted to
|
||||||
* astInformation = information about the AST used to inform formatting
|
* astInformation = information about the AST used to inform formatting
|
||||||
* decisions.
|
* decisions.
|
||||||
|
* config = ?
|
||||||
*/
|
*/
|
||||||
this(const ubyte[] rawSource, const(Token)[] tokens, immutable short[] depths,
|
this(const ubyte[] rawSource, const(Token)[] tokens, immutable short[] depths,
|
||||||
OutputRange output, ASTInformation* astInformation, Config* config)
|
OutputRange output, ASTInformation* astInformation, Config* config)
|
||||||
|
|
Loading…
Reference in New Issue