diff options
author | mousebot <mousebot@riseup.net> | 2021-12-20 17:02:41 +0100 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2021-12-20 17:02:41 +0100 |
commit | 2e84df005202acbab6d9d1f8ccbb13010e0823cc (patch) | |
tree | 3109cf0eee6cc251572b7b6f87f0d6eefbaf885d /lisp/mastodon-auth.el | |
parent | 199ced2730b172538adb26684cd5b4bc25819718 (diff) |
typos and docstrings
Diffstat (limited to 'lisp/mastodon-auth.el')
-rw-r--r-- | lisp/mastodon-auth.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-auth.el b/lisp/mastodon-auth.el index e4f5934..74d4404 100644 --- a/lisp/mastodon-auth.el +++ b/lisp/mastodon-auth.el @@ -166,7 +166,7 @@ Handle any errors from the server." (defun mastodon-auth--user-acct () "Return a mastodon user acct name." - (or (cdr (assoc mastodon-instance-url mastodon-auth--acct-alist)) + (or (cdr (assoc mastodon-instance-url mastodon-auth--acct-alist)) (let ((acct (mastodon-auth--get-account-name))) (push (cons mastodon-instance-url acct) mastodon-auth--acct-alist) acct))) |