From a5f7019b2a8eab1cd4267d1583467e9c8fe78d9a Mon Sep 17 00:00:00 2001 From: jmrgibson Date: Thu, 17 Jun 2021 03:15:13 +1200 Subject: [PATCH] doc: fix minor grammatical errors (#489) A missing "and" after "an" (which I do all the time) and some tense clarification. --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 8cf9026..20e0ecc 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -71,8 +71,8 @@ //! implement your own. //! //! Each widget follows a builder pattern API providing a default configuration along with methods -//! to customize them. The widget is then rendered using the [`Frame::render_widget`] which take -//! your widget instance an area to draw to. +//! to customize them. The widget is then rendered using [`Frame::render_widget`] which takes +//! your widget instance and an area to draw to. //! //! The following example renders a block of the size of the terminal: //!