Better docstring for `bitwarden--empty-or-nil'

This commit is contained in:
Lucien Cartier-Tilet 2022-03-02 17:48:17 +01:00
parent 55814c703f
commit 1544945ac9
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 1 additions and 2 deletions

View File

@ -214,8 +214,7 @@ This macro is largely copied from Tecosaurs screenshot.el"
bitwarden-login-methods))))
(defsubst bitwarden--empty-or-nil (var)
"Return t if VAR is an empty string or nil.
Return nil otherwise."
"Return non-nil if VAR is an empty string or nil."
(or (not var)
(string= "" var)))