From 4d5435da190d817f813e09170d55cfde783a7e76 Mon Sep 17 00:00:00 2001 From: guoguangwu Date: Wed, 20 Mar 2024 17:59:12 +0800 Subject: [PATCH] fix: typos Signed-off-by: guoguangwu --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3b54c1df7..8f952ad89 100644 --- a/README.md +++ b/README.md @@ -516,7 +516,7 @@ scc --format-multi "tabular:stdout,html:output.html,csv:output.csv" ``` The above will run against the current directory, outputting to standard output the the default output, as well as writing -to output.html and output.csv with the appropiate formats. +to output.html and output.csv with the appropriate formats. #### Tabular @@ -629,7 +629,7 @@ The difference between `sql` and `sql-insert` is that `sql` will include table c Usage is 100% the same as any other `scc` command but sql output will always contain per file details. You can compute totals yourself using SQL. -The below will run scc against the current directory, name the ouput as the project scc and then pipe the output to sqlite to put into the database code.db +The below will run scc against the current directory, name the output as the project scc and then pipe the output to sqlite to put into the database code.db ``` scc --format sql --sql-project scc . | sqlite3 code.db