Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: typos #441

Merged
merged 1 commit into from
Mar 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
Loading