Small typos and doc changes
authorAlex Schroeder <alex@gnu.org>
Mon, 28 Jun 2021 11:37:18 +0000 (13:37 +0200)
committerAlex Schroeder <alex@gnu.org>
Mon, 28 Jun 2021 11:37:18 +0000 (13:37 +0200)
- URL schema → URL scheme
- drop "internal variable containing"
- replace '() with nil as that seems more idiomatic

elpher.el

index 8f194a4..db64f3d 100644 (file)
--- a/elpher.el
+++ b/elpher.el
 ;;
 
 ;; 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")))