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 some minor typos in README #563

Merged
merged 1 commit into from
Mar 9, 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
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ script:
- tbls lint
```

> **Tips:** If your CI based on Debian/Ubuntu (`/bin/sh -> dash`), you can use following install command `curl -sL https://raw.githubusercontent.com/k1LoW/tbls/main/use > use-tbls.tmp && . ./use-tbls.tmp && rm ./use-tbls.tmp`
> **Tips:** If your CI based on Debian/Ubuntu (`/bin/sh -> dash`), you can use the following install command `curl -sL https://raw.githubusercontent.com/k1LoW/tbls/main/use > use-tbls.tmp && . ./use-tbls.tmp && rm ./use-tbls.tmp`

> **Tips:** If the order of the columns does not match, you can use the `--sort` option.

Expand Down Expand Up @@ -411,7 +411,7 @@ dsn: my://dbuser:dbpass@hostname:3306/dbname

#### Support Datasource

tbls support following databases/datasources.
tbls supports the following databases/datasources.

**PostgreSQL:**

Expand Down Expand Up @@ -814,10 +814,10 @@ lint:
enabled: true
exclude:
- schema_migrations
# checks if tables are included in at leaset one viewpoint
# checks if tables are included in at least one viewpoint
requireViewpoints:
enabled: true
exclued:
exclude:
- schema_migrations
```

Expand Down Expand Up @@ -1062,7 +1062,7 @@ You can also define groups of tables within viewpoints.
viewpoints:
-
name: comments on post
desc: Users can comment on each post multiple times and put a star on each comments.
desc: Users can comment on each post multiple times and put a star on each comment.
tables:
- users
- posts
Expand Down
Loading