From 930a47d7e8fc1935689da753dc03f679a4d923c3 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Sun, 17 Jun 2018 11:40:08 +0800 Subject: [PATCH] Fix a typo in lib.rs --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 45658d0..d0e4f00 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,7 @@ //! Crossterm provides the same core functionalities for both windows and unix systems. //! Crossterm aims to be simple and easy to call in code. //! True the simplicity of Crossterm you do not have to worry about the platform your working with. -//! You can just call the action you want to preform and under water it will check what to do based on the current platform. +//! You can just call the action you want to perform and under water it will check what to do based on the current platform. #[macro_use] mod shared; @@ -22,4 +22,4 @@ extern crate libc; #[cfg(unix)] extern crate termios; -extern crate rand; \ No newline at end of file +extern crate rand;