From c441a371da3a13b4969833e01677552bda039787 Mon Sep 17 00:00:00 2001 From: Alex Schroeder Date: Mon, 28 Jun 2021 13:37:18 +0200 Subject: [PATCH] Small typos and doc changes MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit - URL schema → URL scheme - drop "internal variable containing" - replace '() with nil as that seems more idiomatic --- elpher.el | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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"))) -- 2.20.1