Fix secondary bug with doc display. #313
This commit is contained in:
parent
2016878b85
commit
396c3c3cf1
|
@ -328,7 +328,7 @@ Socket createSocket(string socketFile, ushort port)
|
||||||
void printDocResponse(AutocompleteResponse response)
|
void printDocResponse(AutocompleteResponse response)
|
||||||
{
|
{
|
||||||
import std.array: join;
|
import std.array: join;
|
||||||
response.docComments.join(r"\n\n").writeln;
|
response.docComments.join("\n").writeln;
|
||||||
}
|
}
|
||||||
|
|
||||||
void printLocationResponse(AutocompleteResponse response)
|
void printLocationResponse(AutocompleteResponse response)
|
||||||
|
|
|
@ -1 +1,2 @@
|
||||||
foo\nF\n\nbar\nB
|
foo\nF
|
||||||
|
bar\nB
|
||||||
|
|
Loading…
Reference in New Issue