aboutsummaryrefslogtreecommitdiff
path: root/src/ansi.rs
diff options
context:
space:
mode:
authorMartin Lindhe <martin-commit@ubique.se>2017-10-30 16:03:58 +0100
committerJoe Wilm <jwilm@users.noreply.github.com>2017-10-30 09:25:13 -0700
commit5b444375f22927c3661c331f3f37519940204bc0 (patch)
tree0079436834a54bd5e58e48e46a253f2a73890b6d /src/ansi.rs
parentf646f6c9f8b04d7c880920941eccce699fba6b04 (diff)
downloadalacritty-5b444375f22927c3661c331f3f37519940204bc0.tar.gz
alacritty-5b444375f22927c3661c331f3f37519940204bc0.zip
fix some typos in comments
Diffstat (limited to 'src/ansi.rs')
-rw-r--r--src/ansi.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ansi.rs b/src/ansi.rs
index 0e12736d..76064f18 100644
--- a/src/ansi.rs
+++ b/src/ansi.rs
@@ -299,12 +299,12 @@ pub trait Handler {
/// DECKPAM - Set keypad to applications mode (ESCape instead of digits)
fn set_keypad_application_mode(&mut self) {}
- /// DECKPNM - Set keypad to numeric mode (digits intead of ESCape seq)
+ /// DECKPNM - Set keypad to numeric mode (digits instead of ESCape seq)
fn unset_keypad_application_mode(&mut self) {}
/// Set one of the graphic character sets, G0 to G3, as the active charset.
///
- /// 'Invoke' one of G0 to G3 in the GL area. Also refered to as shift in,
+ /// 'Invoke' one of G0 to G3 in the GL area. Also referred to as shift in,
/// shift out and locking shift depending on the set being activated
fn set_active_charset(&mut self, CharsetIndex) {}
@@ -1234,7 +1234,7 @@ pub mod C0 {
///
/// 0x80 (@), 0x81 (A), 0x82 (B), 0x83 (C) are reserved
/// 0x98 (X), 0x99 (Y) are reserved
-/// 0x9a (Z) is resezved, but causes DEC terminals to respond with DA codes
+/// 0x9a (Z) is 'reserved', but causes DEC terminals to respond with DA codes
#[allow(non_snake_case)]
pub mod C1 {
/// Reserved
@@ -1249,7 +1249,7 @@ pub mod C1 {
pub const IND: u8 = 0x84;
/// New line, moves done one line and to first column (CR+LF)
pub const NEL: u8 = 0x85;
- /// Start of Selected Area to be as charsent to auxiliary output device
+ /// Start of Selected Area to be sent to auxiliary output device
pub const SSA: u8 = 0x86;
/// End of Selected Area to be sent to auxiliary output device
pub const ESA: u8 = 0x87;
@@ -1291,7 +1291,7 @@ pub mod C1 {
pub const SGCI: u8 = 0x99;
/// DECID - Identify Terminal
pub const DECID: u8 = 0x9a;
- /// Control Sequence Introducer (described in a seperate table)
+ /// Control Sequence Introducer
pub const CSI: u8 = 0x9B;
/// String Terminator (VT125 exits graphics)
pub const ST: u8 = 0x9C;