From 6e64af10f02ac9b4148f85a42487f89b3015e81e Mon Sep 17 00:00:00 2001 From: Pipelight <127784580+pipelight@users.noreply.github.com> Date: Tue, 17 Sep 2024 11:01:16 +0000 Subject: [PATCH] doc(fix typo): add a missing word. (#342) It aint much. But that's honest work. --- russh/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/russh/src/lib.rs b/russh/src/lib.rs index 59842843..2605bf67 100644 --- a/russh/src/lib.rs +++ b/russh/src/lib.rs @@ -45,7 +45,7 @@ //! relatively simple: clients and servers open *channels*, which are //! just integers used to handle multiple requests in parallel in a //! single connection. Once a client has obtained a `ChannelId` by -//! calling one the many `channel_open_…` methods of +//! calling one of the many `channel_open_…` methods of //! `client::Connection`, the client may send exec requests and data //! to the server. //!