From b7bf861554799d8f290adebee762defd17dc0d86 Mon Sep 17 00:00:00 2001 From: Alexandre Bury Date: Sun, 19 Jul 2020 10:31:58 -0700 Subject: [PATCH] Reword cursive_core::backend module doc --- cursive-core/src/backend.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/cursive-core/src/backend.rs b/cursive-core/src/backend.rs index 489d956..7a368ab 100644 --- a/cursive-core/src/backend.rs +++ b/cursive-core/src/backend.rs @@ -1,11 +1,10 @@ -//! Define backends using common libraries. +//! Define the backend trait for actual terminal interaction. //! //! Cursive doesn't print anything by itself: it delegates this job to a //! backend library, which handles all actual input and output. //! -//! This module defines the [`Backend`] trait, as well as a few implementations -//! using some common libraries. Each of those included backends needs a -//! corresonding feature to be enabled. +//! This module defines the [`Backend`] trait, to be implemented by actual +//! types, usually using third-party libraries. //! //! [`Backend`]: trait.Backend.html