From: Alex Schroeder Date: Mon, 28 Jun 2021 11:37:18 +0000 (+0200) Subject: Small typos and doc changes X-Git-Tag: bookmarks~27 X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=elpher.git;a=commitdiff_plain;h=c441a371da3a13b4969833e01677552bda039787 Small typos and doc changes - URL schema → URL scheme - drop "internal variable containing" - replace '() with nil as that seems more idiomatic --- diff --git a/elpher.el b/elpher.el index 8f194a4..db64f3d 100644 --- a/elpher.el +++ b/elpher.el @@ -136,14 +136,14 @@ ;; ;; buffer-local -(defvar elpher--gemini-page-headings '() - "Interval variable containing list of headings on page.") +(defvar elpher--gemini-page-headings nil + "List of headings on the page.") -(defvar elpher--gemini-page-links '() - "Internal variable containing list of links on page.") +(defvar elpher--gemini-page-links nil + "List of links on the page.") (defvar elpher--gemini-page-links-cache (make-hash-table :test 'equal) - "Internal variable containing hash of addresses and page links.") + "Hash of addresses and page links.") ;;; Customization group ;; @@ -190,7 +190,7 @@ These certificates may be used for establishing authenticated TLS connections." :type '(file)) (defcustom elpher-default-url-type "gopher" - "Default URL type (i.e. schema) to assume if not explicitly given." + "Default URL type (i.e. scheme) to assume if not explicitly given." :type '(choice (const "gopher") (const "gemini")))