summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorHenil <71698300+henil@users.noreply.github.com>2020-12-10 14:34:29 +0530
committerGitHub <noreply@github.com>2020-12-10 10:04:29 +0100
commit1defd39491849f55629b703671c568c1246d5a0f (patch)
tree1572bd7b0695c9725396473fb74911abac3f2359 /docs
parentd950bab5ab14948eab748b7d0ab3ec853e35b5bd (diff)
docs(spelling): teack -> track (#91)
Diffstat (limited to 'docs')
-rw-r--r--docs/ARCHITECTURE.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ARCHITECTURE.md b/docs/ARCHITECTURE.md
index 51133873f..a54585ae4 100644
--- a/docs/ARCHITECTURE.md
+++ b/docs/ARCHITECTURE.md
@@ -15,12 +15,12 @@ The TerminalPane has two main roles:
### Scroll (src/terminal_pane/scroll.rs)
The Scroll holds the terminal buffer and is in charge of:
- * Keeping teack of the viewport (which part of it we see) this can change when we scroll up/down
+ * Keeping track of the viewport (which part of it we see) this can change when we scroll up/down
* Keeping track of the cursor position
* Controlling line-wrapping
### Terminal Character (src/terminal_pane/terminal_character.rs)
-The TerminalCharacter represents a single character in the pane. It holds the char itself on the one hand, and an internal `CharacterStyles` struct representing the styling of this character.
+The `TerminalCharacter` represents a single character in the pane. It holds the char itself on the one hand, and an internal `CharacterStyles` struct representing the styling of this character.
This struct derives the `Copy` trait for performance reasons, because it is moved around quite a bit (eg. when line wrapping).
### How a terminal emulator draws characters?