Add space in the function definition
Co-authored-by: Jan Jurzitza <gh@webfreak.org>
This commit is contained in:
parent
f080f39b37
commit
22b5fcf0a4
|
|
@ -768,7 +768,7 @@ AutocompleteResponse.Completion makeSymbolCompletionInfo(const DSymbol* symbol,
|
||||||
{
|
{
|
||||||
string retTypeName = symbol.type.type.name;
|
string retTypeName = symbol.type.type.name;
|
||||||
string fnName = symbol.type.name;
|
string fnName = symbol.type.name;
|
||||||
definition = fnName ~ "()->" ~ retTypeName ~ " " ~ symbol.name;
|
definition = fnName ~ "() -> " ~ retTypeName ~ " " ~ symbol.name;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
definition = symbol.type.name ~ ' ' ~ symbol.name;
|
definition = symbol.type.name ~ ' ' ~ symbol.name;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue