From 62afce2fd382e18813cea02bf404b0b3fcf19e38 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Sun, 9 Feb 2020 22:10:03 +0100 Subject: [PATCH] Fix doctest --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 6c238c2e..b7274620 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -13,7 +13,7 @@ //! let client = Client::https(homeserver_url, None); //! //! let session = client -//! .log_in("@alice:example.com".to_string(), "secret".to_string(), None) +//! .log_in("@alice:example.com".to_string(), "secret".to_string(), None, None) //! .await?; //! //! // You're now logged in! Write the session to a file if you want to restore it later.