summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorKyle Sutherland-Cash <kyle.sutherlandcash@gmail.com>2021-05-08 04:32:31 -0700
committerKyle Sutherland-Cash <kyle.sutherlandcash@gmail.com>2021-05-08 04:32:31 -0700
commit9a3e8bcb84caa0fd103b6d9c365fb97690c1c5ea (patch)
treeb866062e2880088fce6770553db564721876fc39 /docs
parent7b5e728f9db7d82d9282265bb8fa35d7b05e5622 (diff)
First round of merging against server-client and color stuff
Diffstat (limited to 'docs')
-rw-r--r--docs/ARCHITECTURE.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ARCHITECTURE.md b/docs/ARCHITECTURE.md
index a54585ae4..9b2ee7565 100644
--- a/docs/ARCHITECTURE.md
+++ b/docs/ARCHITECTURE.md
@@ -37,5 +37,5 @@ The Boundaries refer to those lines that are drawn between terminal panes. A few
* The Rect trait is here so that different panes can implement it, giving boundaries a generic way to calculate the size of the pane and draw boundaries around it.
* Here we use the [unicode box drawing characters](https://en.wikipedia.org/wiki/Box-drawing_character) in order to draw the borders. There's some logic here about combining them together for all possible combinations of pane locations.
-## PTY Bus (src/pty_bus.rs)
+## PTY Bus (src/pty.rs)
The PtyBus keeps track of several asynchronous streams that read from pty sockets (eg. /dev/pts/999), parse those bytes into ANSI/VT events and send them on to the Screen so that they can be received in the relevant TerminalPane.