Skip to content

Commit 634c70d

Browse files
authored
Spelling (#30)
* link: Unicode HOWTO: The String Type Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: aspell Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: decoded Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: github Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: pypi Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: readme Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --------- Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
1 parent 7e897d7 commit 634c70d

File tree

6 files changed

+10
-13
lines changed

6 files changed

+10
-13
lines changed

.github/spellcheck-settings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
matrix:
22
- name: Markdown
33
expect_match: false
4-
apsell:
4+
aspell:
55
lang: en
66
d: en_US
77
ignore-case: true

.github/wordlist.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ boolean
3030
customizable
3131
dataset
3232
de
33-
dedcoded
3433
extensibility
3534
gcc
3635
gevent

.github/workflows/integration.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ jobs:
5050
run: |
5151
python setup.py bdist_wheel
5252
53-
# This is a noop job that is only needed for Github settings of the project.
54-
# Github doesn't allow requiring all the checks and instead makes you specify
53+
# This is a noop job that is only needed for GitHub settings of the project.
54+
# GitHub doesn't allow requiring all the checks and instead makes you specify
5555
# all the jobs one by one. "run-tests" however is a matrix job and specifying
56-
# all of its possible items is tedious. So we add this job to make Github happy.
56+
# all of its possible items is tedious. So we add this job to make GitHub happy.
5757
verify_tests_succeeded:
5858
name: Verify that tests succeeded
5959
runs-on: ubuntu-latest

.github/workflows/pypi-publish.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Publish tag to Pypi
1+
name: Publish tag to PyPI
22
on:
33
release:
44
types: [published]
@@ -59,7 +59,7 @@ jobs:
5959
path: ./wheelhouse/*.whl
6060

6161
publish:
62-
name: Pypi publish
62+
name: PyPI publish
6363
needs: ['build_sdist', 'build_wheels']
6464
runs-on: ubuntu-latest
6565
environment: pypi
@@ -89,5 +89,5 @@ jobs:
8989
cp -R artifacts/linux/* dist
9090
cp -R artifacts/macos/* dist
9191
cp -R artifacts/sdist/* dist
92-
- name: Publish to Pypi
92+
- name: Publish to PyPI
9393
uses: pypa/gh-action-pypi-publish@release/v1

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
### 1.0.1 (2019-11-13)
3232

3333
* Permit all allowed values of codec errors (see #86)
34-
* BUGFIX: READEME.md has UTF-8 characters, setup.py will fail on systems
34+
* BUGFIX: README.md has UTF-8 characters, setup.py will fail on systems
3535
where the locale is not UTF-8. (see #89)
3636

3737
### 1.0.0 (2019-01-20)

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,9 @@ initializing it:
9090

9191
Decoding of bulk data will be attempted using the specified encoding and
9292
error handler. If the error handler is `'strict'` (the default), a
93-
`UnicodeDecodeError` is raised when data cannot be dedcoded. This is identical
93+
`UnicodeDecodeError` is raised when data cannot be decoded. This is identical
9494
to Python's default behavior. Other valid values to `errors` include
95-
`'replace'`, `'ignore'`, and `'backslashreplace'`. More information on the
96-
behavior of these error handlers can be found
97-
[here](https://docs.python.org/3/howto/unicode.html#the-string-type).
95+
`'replace'`, `'ignore'`, and `'backslashreplace'`. See [Unicode HOWTO: The String Type](https://docs.python.org/3/howto/unicode.html#the-string-type) for more information on the behavior of these error handlers.
9896

9997

10098
When the specified encoding cannot be found, a `LookupError` will be raised

0 commit comments

Comments
 (0)