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 two typos and add a spellcheck #4034

Draft
wants to merge 2 commits into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
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
20 changes: 20 additions & 0 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Spellcheck

on: [push, pull_request]

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
spellcheck:
name: Spelling
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
show-progress: false
- uses: codespell-project/actions-codespell@master
with:
path: docs/
2 changes: 1 addition & 1 deletion docs/docs/releases/0.1.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ This release:
- Properly detect identity columns _([#3125](https://github.com/centerofci/mathesar/pull/3125))_
- Wiring sql functions for links and tables _([#3130](https://github.com/centerofci/mathesar/pull/3130))_
- Tests for alter table _([#3139](https://github.com/centerofci/mathesar/pull/3139))_
- Add constraint copying to column extration logic _([#3168](https://github.com/centerofci/mathesar/pull/3168))_
- Add constraint copying to column extraction logic _([#3168](https://github.com/centerofci/mathesar/pull/3168))_

### Summarization improvements

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/releases/0.1.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ _[#3186](https://github.com/mathesar-foundation/mathesar/pull/3186) [#3219](http

### Text-only imports

When importing CSV data, Mathesar now gives you the option to use `TEXT` as the database type for all columns. This choice speeds up the import for larger data sets by skipping the process of guessing colum types.
When importing CSV data, Mathesar now gives you the option to use `TEXT` as the database type for all columns. This choice speeds up the import for larger data sets by skipping the process of guessing column types.

![image](https://github.com/mathesar-foundation/mathesar/assets/42411/6e0b5b1c-2e10-4e1f-8ad3-f4d99d28d8a9)

Expand Down
4 changes: 2 additions & 2 deletions docs/docs/user-guide/importing-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Fields in the CSV data may be delimited by any of the following characters:

| Name | Character | Notes |
| -- | -- | -- |
| Comma | `,` | A traditional CSV file (a "**C**omma **S**eparated **V**alue" document) |
| Tab | _(not printable)_ | This is sometimes referred to as a _TSV_ file (a "**T**ab **S**eparated **V**alue" document) |
| Comma | `,` | A traditional CSV file (a "**C**omma **S**eparated **V**alue" document) | <!-- codespell:ignore alue -->
| Tab | _(not printable)_ | This is sometimes referred to as a _TSV_ file (a "**T**ab **S**eparated **V**alue" document) | <!-- codespell:ignore alue-->
| Semicolon | `;` | |
| Colon | `:` | |
| Pipe | `|` | |
Expand Down