remove unnecessary blank lines in .d.ts file

This commit is contained in:
rhysd
2019-02-01 16:07:31 +09:00
parent 23ccd3b5c1
commit a1995cafd4
2 changed files with 3 additions and 3 deletions

View File

@ -743,7 +743,7 @@ impl<'a, 'b> Js2Rust<'a, 'b> {
ts.push_str(": ");
ts.push_str(&self.ret_ty);
}
ts.push_str(";\n");
ts.push(';');
(js, ts, self.js_doc_comments())
}
}