Skip to content

Commit 72f156f

Browse files
authored
GitHub Action to discover typos with codespell (#25)
1 parent f58cb4c commit 72f156f

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/codespell.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: codespell
2+
on: [pull_request, push]
3+
jobs:
4+
codespell:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v3
8+
- run: pip install codespell
9+
- run: codespell --count # --ignore-words-list="" --skip="*.css,*.js,*.lock,*.po"

registry.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ title: Jython Registry
44

55
# Jython Registry
66

7-
Because there is no good platform independent equivalent of the Windows Registry (or Unix envrionment variables) Java has its own environment variable namespace. Jython acquires its namespace from the following sources (later sources override defaults found in earlier places).
7+
Because there is no good platform independent equivalent of the Windows Registry (or Unix environment variables) Java has its own environment variable namespace. Jython acquires its namespace from the following sources (later sources override defaults found in earlier places).
88

99
- The Java system properties: typically passed in on the command line as options to the java interpreter.
1010
- The Jython "registry" file, which contains prop=value pairs. See below for the algorithm Jython uses to find the registry file.
11-
- The user's personal registry file, which contains similarly formated prop/value pairs. The user's registry file is at `"user.home"+"/.jython"`
11+
- The user's personal registry file, which contains similarly formatted prop/value pairs. The user's registry file is at `"user.home"+"/.jython"`
1212
- Jython properties: Specified on the command line as options to the jython class. See the -D option to the interpreter.
1313

1414
## Registry Properties

0 commit comments

Comments
 (0)