From cc6f97bee97ac63ce3bd11bebb1fc87c77b2138e Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Fri, 19 Nov 2021 21:09:44 +0100 Subject: [PATCH] Fix missing word --- crates/matrix-sdk/src/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/matrix-sdk/src/client.rs b/crates/matrix-sdk/src/client.rs index 8eaad21cb..db1674540 100644 --- a/crates/matrix-sdk/src/client.rs +++ b/crates/matrix-sdk/src/client.rs @@ -225,7 +225,7 @@ impl Client { /// // First let's try to construct an user id, presumably from user input. /// let alice = UserId::try_from("@alice:example.org")?; /// - /// // Now let's try to discover the homeserver and create client object. + /// // Now let's try to discover the homeserver and create a client object. /// let client = Client::new_from_user_id(&alice).await?; /// /// // Finally let's try to login.