From 59f90fb5869a0e9206ecfca7e0ae38bb4da78984 Mon Sep 17 00:00:00 2001 From: forouhar Date: Sun, 6 Feb 2022 13:09:48 +0330 Subject: [PATCH] Documentation edit (#615) --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 1921f74..ddc6d25 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -152,7 +152,7 @@ //! stdout.execute(cursor::MoveTo(5,5)); //! ``` //! The [execute](./trait.ExecutableCommand.html) function returns itself, therefore you can use this to queue -//! another command. Like `stdout.queue(Goto(5,5)).queue(Clear(ClearType::All))`. +//! another command. Like `stdout.execute(Goto(5,5))?.execute(Clear(ClearType::All))`. //! //! Macros: //!