Commit 4b9ecc56 authored by Samanta Navarro's avatar Samanta Navarro Committed by eta
Browse files

Fix sentences

The arti crate itself is only used in benchmark and testing crate.
I think this sentence does not belong here.

Also extend retry-error description (from Architecture.md).
parent 1d62d92f
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -7,7 +7,6 @@ A minimal command line program for connecting to the tor network
This crate is the primary command-line interface for
[Arti](https://gitlab.torproject.org/tpo/core/arti/), a project to
implement [Tor](https://www.torproject.org/) in Rust.
Many other crates in Arti depend on it.

Note that Arti is a work in progress; although we've tried to
write all the critical security components, you probably shouldn't
+3 −3
Original line number Diff line number Diff line
@@ -3,9 +3,9 @@
An error attempt to represent multiple failures.

This crate implements [`RetryError`], a type to use when you
retry something a few times, and all those attempts.  Instead of
returning only a single error, it records _all of the errors
received_, in case they are different.
retry something a few times, and all those attempts can fail differently
each time.  Instead of returning only a single error, it records
_all of the errors received_, in case they are different.

This crate is developed as part of
[Arti](https://gitlab.torproject.org/tpo/core/arti/), a project to
+3 −3
Original line number Diff line number Diff line
//! An error attempt to represent multiple failures.
//!
//! This crate implements [`RetryError`], a type to use when you
//! retry something a few times, and all those attempts.  Instead of
//! returning only a single error, it records _all of the errors
//! received_, in case they are different.
//! retry something a few times, and all those attempts can fail differently
//! each time.  Instead of returning only a single error, it records
//! _all of the errors received_, in case they are different.
//!
//! This crate is developed as part of
//! [Arti](https://gitlab.torproject.org/tpo/core/arti/), a project to