From 287e291485bb8ab71bcfe9c9d9c2412dd67106fc Mon Sep 17 00:00:00 2001 From: Floris Bruynooghe Date: Sun, 6 Feb 2022 22:11:54 +0100 Subject: [PATCH] Fixup doc links --- src/accounts.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/accounts.rs b/src/accounts.rs index e71931a9b..be95fae0f 100644 --- a/src/accounts.rs +++ b/src/accounts.rs @@ -93,7 +93,7 @@ impl Accounts { /// Get the currently selected account. /// /// If the selected account is encrypted and not yet loaded using - /// [`Accounts::load_encrypted`] `None` will be returned. + /// [`Accounts::load_encrypted_account`] `None` will be returned. pub async fn get_selected_account(&self) -> Option { let id = self.config.get_selected_account().await; self.accounts.get(&id).cloned() @@ -259,7 +259,7 @@ impl Accounts { /// /// Note that we can't really distinguish between unreadable/corrupted accounts and /// encrypted accounts. We consider all known accounts which failed to load encrypted, - /// they can be loaded using [`Accounts::load_encrypted`]. + /// they can be loaded using [`Accounts::load_encrypted_account`]. pub fn get_encrypted(&self) -> Vec { let configured_ids: BTreeSet = self .config