Fix typos and cleanup

This commit is contained in:
Dimitris Apostolou 2021-10-25 19:58:42 +03:00
parent 84f81d14eb
commit c26dc07fbb
No known key found for this signature in database
GPG Key ID: 4B5D20E938204A8A
5 changed files with 9 additions and 9 deletions

View File

@ -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

View File

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

View File

@ -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

View File

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

View File

@ -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