Skip to content

Commit

Permalink
fixed join
Browse files Browse the repository at this point in the history
  • Loading branch information
k--kato committed Feb 15, 2017
1 parent 8aa4af2 commit 90542c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Domain/Lang/DocommentDomainCSharp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export class DocommentDomainCSharp extends DocommentDomain {
/* @override */
public GetCode(): string {
const code: string = this._vsCodeApi.ReadNextCodeFromCurrent(this._config.eol);
const removedAttr: string = code.split(this._config.eol).filter(line => !SyntacticAnalysisCSharp.IsAttribute(line.trim())).join();
const removedAttr: string = code.split(this._config.eol).filter(line => !SyntacticAnalysisCSharp.IsAttribute(line.trim())).join('');
return removedAttr;
}

Expand Down

0 comments on commit 90542c5

Please sign in to comment.