aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Holloway <holloway.p.r@gmail.com>2018-03-09 23:48:24 +0000
committerJoe Wilm <jwilm@users.noreply.github.com>2018-03-09 17:00:51 -0800
commitfe116505000826c42f6f0ac2e598d7fe19217588 (patch)
treeb2a4a862945294891d5b86ef8131e479fdfac9ee
parent76ad2fa73d360a959bf4d7f0505903576514e3ec (diff)
downloadr-alacritty-vte-fe116505000826c42f6f0ac2e598d7fe19217588.tar.gz
r-alacritty-vte-fe116505000826c42f6f0ac2e598d7fe19217588.tar.bz2
r-alacritty-vte-fe116505000826c42f6f0ac2e598d7fe19217588.zip
Fix typo in parselog example
osc_dispatch calls were being logged as csi_dispatch
-rw-r--r--examples/parselog.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/parselog.rs b/examples/parselog.rs
index 86751c9..a2c3b2f 100644
--- a/examples/parselog.rs
+++ b/examples/parselog.rs
@@ -29,7 +29,7 @@ impl vte::Perform for Log {
}
fn osc_dispatch(&mut self, params: &[&[u8]]) {
- println!("[csi_dispatch] params={:?}", params);
+ println!("[osc_dispatch] params={:?}", params);
}
fn csi_dispatch(&mut self, params: &[i64], intermediates: &[u8], ignore: bool, c: char) {