Skip to content
This repository has been archived by the owner on Oct 22, 2019. It is now read-only.

Commit

Permalink
Merge pull request #4 from crossterm-rs/zrzka/book-removal
Browse files Browse the repository at this point in the history
Remove all references to the crossterm book
  • Loading branch information
zrzka authored Oct 2, 2019
2 parents bd97b74 + d4dd552 commit e473b4f
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Version master

- Add deprecation note
- Remove all references to the crossterm book

# Version 0.3.1

Expand Down
5 changes: 0 additions & 5 deletions src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ use crate::{execute, impl_display, queue, write_cout, Result};
/// crossterm already delivers a number of commands.
/// There is no need to implement them yourself.
/// Also, you don't have to execute the commands yourself by calling a function.
/// For more information see the [command API](https://crossterm-rs.github.io/crossterm/docs/command.html)
pub trait Command {
type AnsiType: Display;

Expand Down Expand Up @@ -53,8 +52,6 @@ where
/// - When the buffer is to full, then the terminal will flush for you.
/// - Incase of `stdout` each line, because `stdout` is line buffered.
///
/// Check the [command API](https://crossterm-rs.github.io/crossterm/docs/command.html) for more information and all available commands.
///
/// # Parameters
/// - [Command](./trait.Command.html)
///
Expand Down Expand Up @@ -83,8 +80,6 @@ where
/// In case you have many executions after on and another you can use `queue(command)` to get some better performance.
/// The `queue` function will not call `flush`.
///
/// Check the [command API](https://crossterm-rs.github.io/crossterm/docs/command.html) for more information and all available commands.
///
/// # Remarks
/// - In the case of UNIX and windows 10, ANSI codes are written to the given 'writer'.
/// - In case of Windows versions lower than 10, a direct WinApi call will be made.
Expand Down
4 changes: 0 additions & 4 deletions src/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ macro_rules! write_cout {
/// - When the buffer is to full, then the terminal will flush for you.
/// - Incase of `stdout` each line, because `stdout` is line buffered.
///
/// Check [here](https://crossterm-rs.github.io/crossterm/docs/command.html) for more information and all availible commands.
///
/// # Parameters
/// - [std::io::Writer](https://doc.rust-lang.org/std/io/trait.Write.html)
///
Expand Down Expand Up @@ -114,8 +112,6 @@ macro_rules! queue {

/// Execute one or more command(s)
///
/// Check [here](https://crossterm-rs.github.io/crossterm/docs/command.html) for more information and all availible commands.
///
/// # Parameters
/// - [std::io::Writer](https://doc.rust-lang.org/std/io/trait.Write.html)
///
Expand Down

0 comments on commit e473b4f

Please sign in to comment.