Skip to content

Commit

Permalink
Dev fix spelling (tableau#408)
Browse files Browse the repository at this point in the history
* Add spelling fix workflow
  • Loading branch information
0golovatyi authored Apr 6, 2020
1 parent cb2437a commit a9e7a87
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/pull_fix_spelling.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Fix spelling on push

on: [push]

jobs:
build:
name: ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}

strategy:
matrix:
python-version: [3.7]
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v2
- uses: sobolevn/misspell-fixer-action@master
- uses: peter-evans/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: 'Fixes by misspell-fixer'
title: 'Typos fix by misspell-fixer'
2 changes: 1 addition & 1 deletion docs/server-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Configuration parameters can be updated with:
1. Adding environment variables - set the environment variable as required by
your Operating System. When creating environment variables, use the same
name for your environment variable as specified in the config file.
2. Specifying a parameter in a config file (enviroment variable value overwrites
2. Specifying a parameter in a config file (environment variable value overwrites
configuration setting).

Configuration file with custom settings is specified as a command line parameter:
Expand Down
2 changes: 1 addition & 1 deletion docs/server-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ and specify it in command line:
tabpy --config=path/to/my/config/file.conf
```

It is highly recommended to use Python virtual enviroment for running TabPy.
It is highly recommended to use Python virtual environment for running TabPy.
Check the [Running TabPy in Python Virtual Environment](tabpy-virtualenv.md) page
for more details.

0 comments on commit a9e7a87

Please sign in to comment.