From e7afc57a6a613290666d5e4deed79f180b0a8ba4 Mon Sep 17 00:00:00 2001 From: sgmoore Date: Sun, 19 Dec 2021 08:07:27 -0800 Subject: [PATCH] Remove extra white space (#7477) --- docs/introduction/architecture.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/introduction/architecture.md b/docs/introduction/architecture.md index 3b70e7015..27e1b34c6 100644 --- a/docs/introduction/architecture.md +++ b/docs/introduction/architecture.md @@ -61,7 +61,7 @@ Here are some relevant facts about TCP: ![tcp](../imgs/tcp-window.png) -In order to have performant TCP connections under the conditions created in Tendermint, we've created the `mconnection`, or the multiplexing connection. It is our own protocol built on top of TCP. It lets us reuse TCP connections to minimize overhead, and it keeps the window size high by sending auxiliary messages when necessary. +In order to have performant TCP connections under the conditions created in Tendermint, we've created the `mconnection`, or the multiplexing connection. It is our own protocol built on top of TCP. It lets us reuse TCP connections to minimize overhead, and it keeps the window size high by sending auxiliary messages when necessary. The `mconnection` is represented by a struct, which contains a batch of messages, read and write buffers, and a map of channel IDs to reactors. It communicates with TCP via file descriptors, which it can write to. There is one `mconnection` per peer connection.