From d7737c0da5c8371783b987a47c95b66225841809 Mon Sep 17 00:00:00 2001 From: Gautam Kotian Date: Sun, 28 Feb 2016 00:13:00 +0100 Subject: [PATCH] Add missing parameters in function documentation --- src/dfmt/formatter.d | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/dfmt/formatter.d b/src/dfmt/formatter.d index 4f10a64..1d34eff 100644 --- a/src/dfmt/formatter.d +++ b/src/dfmt/formatter.d @@ -73,10 +73,13 @@ struct TokenFormatter(OutputRange) { /** * Params: + * rawSource = ? * tokens = the tokens to format + * depths = ? * output = the output range that the code will be formatted to * astInformation = information about the AST used to inform formatting * decisions. + * config = ? */ this(const ubyte[] rawSource, const(Token)[] tokens, immutable short[] depths, OutputRange output, ASTInformation* astInformation, Config* config)