Use internal doc-links and add a new link (#653)

This commit is contained in:
Gustav Sörnäs 2022-04-23 10:11:46 +02:00 committed by GitHub
parent 9e6bf0fced
commit 5b19aa6d6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -24,8 +24,8 @@ use super::{
/// **This type is not available by default. You have to use the `event-stream` feature flag /// **This type is not available by default. You have to use the `event-stream` feature flag
/// to make it available.** /// to make it available.**
/// ///
/// It implements the [`futures::stream::Stream`](https://docs.rs/futures/0.3.1/futures/stream/trait.Stream.html) /// It implements the [Stream](futures_core::stream::Stream)
/// trait and allows you to receive `Event`s with [`async-std`](https://crates.io/crates/async-std) /// trait and allows you to receive [`Event`]s with [`async-std`](https://crates.io/crates/async-std)
/// or [`tokio`](https://crates.io/crates/tokio) crates. /// or [`tokio`](https://crates.io/crates/tokio) crates.
/// ///
/// Check the [examples](https://github.com/crossterm-rs/crossterm/tree/master/examples) folder to see how to use /// Check the [examples](https://github.com/crossterm-rs/crossterm/tree/master/examples) folder to see how to use

View File

@ -16,7 +16,7 @@ macro_rules! csi {
/// ///
/// # Arguments /// # Arguments
/// ///
/// - [std::io::Writer](https://doc.rust-lang.org/std/io/trait.Write.html) /// - [std::io::Writer](std::io::Write)
/// ///
/// ANSI escape codes are written on the given 'writer', after which they are flushed. /// ANSI escape codes are written on the given 'writer', after which they are flushed.
/// ///
@ -70,7 +70,7 @@ macro_rules! queue {
/// ///
/// # Arguments /// # Arguments
/// ///
/// - [std::io::Writer](https://doc.rust-lang.org/std/io/trait.Write.html) /// - [std::io::Writer](std::io::Write)
/// ///
/// ANSI escape codes are written on the given 'writer', after which they are flushed. /// ANSI escape codes are written on the given 'writer', after which they are flushed.
/// ///