diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-09-05 18:12:39 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-09-05 18:13:05 -0400 |
commit | adf27b531a7fcd7066ab6649e8073bd1895a823a (patch) | |
tree | 0664734d28c053581ea0bd43e1f753655900e113 /contrib | |
parent | 95d731d9b38819cb822dbcd365972a14ae78d21f (diff) | |
parent | f8a81f73ac4fee82488806c2b384b36e8ee2acdf (diff) |
Merge #13954: Warn (don't fail!) on spelling errors. Fix typos reported by codespell.
f8a81f73ac lint: Add spell check linter (codespell) (practicalswift)
ada356208e Fix typos reported by codespell (practicalswift)
Pull request description:
* Check for common misspellings using `codespell`.
* Fix recently introduced typos reported by `codespell`.
Tree-SHA512: 9974c0e640b411c7d0ebc5b45de253c19bac7fe3002cd98601ff8da8db584224c2fd7d331aee3df612c9f2cfef540d647a9b4c5a1a73fd208dc93ce4bf9e5e3e
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/debian/copyright | 2 | ||||
-rwxr-xr-x | contrib/gitian-build.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/debian/copyright b/contrib/debian/copyright index 21cca7d9ac..e5b9cbaa40 100644 --- a/contrib/debian/copyright +++ b/contrib/debian/copyright @@ -96,7 +96,7 @@ Comment: Site: https://bitcointalk.org/?topic=1756.0 Files: src/qt/res/icons/proxy.png src/qt/res/src/proxy.svg Copyright: Cristian Mircea Messel -Licese: public-domain +License: public-domain License: Expat diff --git a/contrib/gitian-build.py b/contrib/gitian-build.py index a2792e6e25..2e8c99247d 100755 --- a/contrib/gitian-build.py +++ b/contrib/gitian-build.py @@ -170,7 +170,7 @@ def main(): args.sign_prog = 'true' if args.detach_sign else 'gpg --detach-sign' - # Set enviroment variable USE_LXC or USE_DOCKER, let gitian-builder know that we use lxc or docker + # Set environment variable USE_LXC or USE_DOCKER, let gitian-builder know that we use lxc or docker if args.docker: os.environ['USE_DOCKER'] = '1' elif not args.kvm: |