From aaa17535acdb75ebcbf49a8109550308384e9430 Mon Sep 17 00:00:00 2001 From: Johannes Becker Date: Mon, 17 May 2021 11:50:48 +0200 Subject: [PATCH] matrix_sdk: Fix typo --- matrix_sdk/src/http_client.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/matrix_sdk/src/http_client.rs b/matrix_sdk/src/http_client.rs index cfd55be7..63c83e60 100644 --- a/matrix_sdk/src/http_client.rs +++ b/matrix_sdk/src/http_client.rs @@ -133,7 +133,7 @@ impl HttpClient { let request = if !self.request_config.assert_identity { self.try_into_http_request(request, session, config).await? } else { - self.try_into_http_request_with_identy_assertion(request, session, config).await? + self.try_into_http_request_with_identity_assertion(request, session, config).await? }; self.inner.send_request(request, config).await @@ -180,7 +180,7 @@ impl HttpClient { } #[cfg(feature = "appservice")] - async fn try_into_http_request_with_identy_assertion( + async fn try_into_http_request_with_identity_assertion( &self, request: Request, session: Arc>>,