From 65615c3c3917aee789c88a3d03657336bb147c28 Mon Sep 17 00:00:00 2001 From: shortenda Date: Wed, 16 Mar 2016 01:43:35 -0700 Subject: [PATCH] Fix typo --- src/control.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/control.rs b/src/control.rs index 9781e69..24a68d2 100644 --- a/src/control.rs +++ b/src/control.rs @@ -11,7 +11,7 @@ pub trait TermWrite { fn csi(&mut self, b: &[u8]) -> io::Result; /// Print OSC (operating system command) followed by a byte string. fn osc(&mut self, b: &[u8]) -> io::Result; - /// Print OSC (device control string) followed by a byte string. + /// Print DSC (device control string) followed by a byte string. fn dsc(&mut self, b: &[u8]) -> io::Result;