diff --git a/src/backend/crossterm.rs b/src/backend/crossterm.rs index f5076c5c..d374441e 100644 --- a/src/backend/crossterm.rs +++ b/src/backend/crossterm.rs @@ -93,6 +93,11 @@ where { /// Creates a new `CrosstermBackend` with the given writer. /// + /// Most applications will use either [`stdout`](std::io::stdout) or + /// [`stderr`](std::io::stderr) as writer. See the [FAQ] to determine which one to use. + /// + /// [FAQ]: https://ratatui.rs/faq/#should-i-use-stdout-or-stderr + /// /// # Example /// /// ```rust,no_run diff --git a/src/backend/termion.rs b/src/backend/termion.rs index bfa804b5..bd7577e6 100644 --- a/src/backend/termion.rs +++ b/src/backend/termion.rs @@ -76,6 +76,11 @@ where { /// Creates a new Termion backend with the given writer. /// + /// Most applications will use either [`stdout`](std::io::stdout) or + /// [`stderr`](std::io::stderr) as writer. See the [FAQ] to determine which one to use. + /// + /// [FAQ]: https://ratatui.rs/faq/#should-i-use-stdout-or-stderr + /// /// # Example /// /// ```rust,no_run