From 8a3105a68be2771eee5a8abce41aac7247f3658c Mon Sep 17 00:00:00 2001 From: feathecutie <53912746+feathecutie@users.noreply.github.com> Date: Wed, 5 May 2021 15:57:58 +0200 Subject: [PATCH] Fixed typo in docs of Command (#564) --- src/command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command.rs b/src/command.rs index 3e61ac84..ec89eccc 100644 --- a/src/command.rs +++ b/src/command.rs @@ -10,7 +10,7 @@ use super::error::Result; /// In order to understand how to use and execute commands, /// it is recommended that you take a look at [Command Api](../#command-api) chapter. pub trait Command { - /// Write an ANSI representation of this commmand to the given writer. + /// Write an ANSI representation of this command to the given writer. /// An ANSI code can manipulate the terminal by writing it to the terminal buffer. /// However, only Windows 10 and UNIX systems support this. ///