Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Olek Golovatyi committed Apr 15, 2020
2 parents 870f265 + a9e7a87 commit d4b6f9a
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 4 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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
[![PyPI version](https://badge.fury.io/py/tabpy.svg)](https://pypi.python.org/pypi/tabpy/)
![Release](https://img.shields.io/github/release/tableau/TabPy.svg)

TabPy (the Tableau Python Server) is an Analytices Extension implementation which
TabPy (the Tableau Python Server) is an Analytics Extension implementation which
expands Tableau's capabilities by allowing users to execute Python scripts and
saved functions via Tableau's table calculations.

Expand Down
2 changes: 1 addition & 1 deletion docs/TableauConfiguration.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

## Configuration

Once you have a [TabPy instance](server-startup.md) set up you can easily
Once you have a [TabPy instance](server-install.md) set up you can easily
configure Tableau to use this service for evaluating Python code.

### Tableau Desktop
Expand Down
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 d4b6f9a

Please sign in to comment.