Fix diagram typos

This commit is contained in:
Greg Fitzgerald
2018-06-07 16:04:39 -06:00
parent fe7d1cb81c
commit cdfbbe5e60

View File

@ -20,7 +20,7 @@ pub struct Server {
} }
impl Server { impl Server {
/// Create a server instance acting as leader. /// Create a server instance acting as a leader.
/// ///
/// ```text /// ```text
/// .---------------------. /// .---------------------.
@ -97,11 +97,11 @@ impl Server {
Server { thread_hdls } Server { thread_hdls }
} }
/// Create a server instance acting as validator. /// Create a server instance acting as a validator.
/// ///
/// ```text /// ```text
/// .-------------------------------. /// .-------------------------------.
/// | Validator | /// | Validator |
/// | | /// | |
/// .--------. | .-----. | /// .--------. | .-----. |
/// | |-------------->| | | /// | |-------------->| | |
@ -116,7 +116,7 @@ impl Server {
/// | ^ | /// | ^ |
/// .--------. | | | .------------. /// .--------. | | | .------------.
/// | | | .-----. .--+--. .-----. | | | /// | | | .-----. .--+--. .-----. | | |
/// | Leader |----| NCP +-->| TVU +-->| NCP +------>| Validators | /// | Leader |--->| NCP +-->| TVU +-->| NCP +------>| Validators |
/// | | | `-----` `-----` `-----` | | | /// | | | `-----` `-----` `-----` | | |
/// `--------` | | `------------` /// `--------` | | `------------`
/// `-------------------------------` /// `-------------------------------`