From c26dc07fbbeac2d3e8a81029f2c7bbc2112b738b Mon Sep 17 00:00:00 2001 From: Dimitris Apostolou Date: Mon, 25 Oct 2021 19:58:42 +0300 Subject: [PATCH] Fix typos and cleanup --- CODE_OF_CONDUCT | 2 +- CONTRIBUTING.md | 2 +- README.md | 4 ++-- doc/Architecture.md | 2 +- maint/reproducible_build.sh | 8 ++++---- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CODE_OF_CONDUCT b/CODE_OF_CONDUCT index bd6ec91d5..b1a5eccf0 100644 --- a/CODE_OF_CONDUCT +++ b/CODE_OF_CONDUCT @@ -1,4 +1,4 @@ -The Tor Project is committed to fostering a inclusive community +The Tor Project is committed to fostering an inclusive community where people feel safe to engage, share their points of view, and participate. For the latest version of our Code of Conduct, please see diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2a3a75071..69509de5a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -30,7 +30,7 @@ working Git installation to fetch the code. check the [Other Installation Methods](https://forge.rust-lang.org/infra/other-installation-methods.html) -- [Git](https://git-scm.com/downloads) note, for Linux, MacOS, and some +- [Git](https://git-scm.com/downloads) note, for Linux, macOS, and some Unix-like devices Git may be available via a package manager; `apt`, `brew`, `yum`, `pacman`, etc. diff --git a/README.md b/README.md index 3c6fa54c1..bafd02159 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ get our project manager to sign off on them. * [ ] More performance work * [and more...](https://gitlab.torproject.org/tpo/core/arti/-/milestones/8) - * Arti 1.1.0: Anti-censorship features (Goal: End of october, 2022?) + * Arti 1.1.0: Anti-censorship features (Goal: End of October, 2022?) * Target audience: **censored users** * [ ] Bridges * [ ] Pluggable transports @@ -142,7 +142,7 @@ get our project manager to sign off on them. See [`CONTRIBUTING.md`](./CONTRIBUTING.md) for a few ideas for how to get started. -## Licence +## License This code is licensed under either of diff --git a/doc/Architecture.md b/doc/Architecture.md index 557d86785..6a71e369d 100644 --- a/doc/Architecture.md +++ b/doc/Architecture.md @@ -75,7 +75,7 @@ directories. when they already exist. `tor-guardmgr`: Manage a set of "guard nodes" that clients can use for -connecting to the first relays on their citrcuit. +connecting to the first relays on their circuit. `tor-circmgr`: Creates circuits as requested, returning existing circuits when they already exist. diff --git a/maint/reproducible_build.sh b/maint/reproducible_build.sh index 81b8f2372..4b6923ac6 100755 --- a/maint/reproducible_build.sh +++ b/maint/reproducible_build.sh @@ -1,7 +1,7 @@ #!/bin/sh # # This script is run inside a docker container as part of our -# reporoducible build process. +# reproducible build process. # set -xeu if [ ! -f /.dockerenv ]; then @@ -31,12 +31,12 @@ here=$(pwd) ## fix the target architecture to get reproducible builds ## the architecture was chosen as old enough that it should cover most usage -## while still supporting usefull features like AES-NI. Older architectures +## while still supporting useful features like AES-NI. Older architectures ## won't be able to execute the resulting binary. export CFLAGS="-march=westmere" export RUSTFLAGS="-C target-cpu=westmere" -## force build to run in a fixed location. Ncessesary because the build path +## force build to run in a fixed location. Necessary because the build path ## is somehow captured when compiling. cp -a "$here" /arti cd /arti @@ -50,7 +50,7 @@ ln -s /dev/shm/registry /usr/local/cargo/registry/src ## add missing dependencies apk add perl make git musl-dev if [ -n "$linux" ]; then - ## no additional dependencies specifically for linux + ## no additional dependencies specifically for Linux ## Build targeting x86_64-unknown-linux-musl to get a static binary ## feature "static" enable compiling some C dependencies instead of linking