FIX abnormal spaces at start of ${readme}

Removed extra newline code
which causes abnormal line indentation at the start of ${readme} with extra 2 spaces
pull/23/head
Zhe 3 years ago committed by GitHub
parent 1f2e543bdb
commit 5b44f60e04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -22,8 +22,7 @@ export const quote = async (args: string[]): Promise<string> => {
export const readme = async (args: string[]): Promise<string> => {
const readme = await getReadme();
return `Opening GitHub README...\n
${readme}`;
return `Opening GitHub README...\n${readme}`;
};
export const weather = async (args: string[]): Promise<string> => {

Loading…
Cancel
Save