Add missing parameters in function documentation

This commit is contained in:
Gautam Kotian 2016-02-28 00:13:00 +01:00
parent 649ee08e62
commit d7737c0da5
1 changed files with 3 additions and 0 deletions

View File

@ -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)