summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2020-11-06 09:58:36 +0100
committerGitHub <noreply@github.com>2020-11-06 09:58:36 +0100
commitcc347ab24adafb2004caa0ecc6b658f311a64a42 (patch)
tree4ff803ac561f327accaae4a2e2e1e05d39129b68 /docs
parentea2251e7559c4b1546da266f7381170957677e56 (diff)
docs(architecture): fix title
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 d10a13a9c..51133873f 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
+## PTY Bus (src/pty_bus.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.