Skip to content

GitHub Action to discover typos with codespell #25

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

Merged
merged 4 commits into from
May 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
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
9 changes: 9 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: codespell
on: [pull_request, push]
jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: pip install codespell
- run: codespell --count # --ignore-words-list="" --skip="*.css,*.js,*.lock,*.po"
4 changes: 2 additions & 2 deletions registry.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ title: Jython Registry

# Jython Registry

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).
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).

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

## Registry Properties
Expand Down