]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix documentation of last change
authorEli Zaretskii <eliz@gnu.org>
Sat, 24 Jun 2023 11:58:44 +0000 (14:58 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 24 Jun 2023 11:58:44 +0000 (14:58 +0300)
* lisp/net/eww.el (eww-copy-alternate-url): Doc fix.
* etc/NEWS:
* doc/misc/eww.texi (Basics): Minor wording and punctuation fixes.
(Bug#64126)

doc/misc/eww.texi
etc/NEWS
lisp/net/eww.el

index cff48bd601e33f4afc5336ba71272e1e6cdba709..b67624af9f863e46a9b9e66b964a05f4952e9105 100644 (file)
@@ -118,7 +118,7 @@ page's URL to the kill ring instead.
 @findex eww-copy-alternate-url
 @kindex A
   The @kbd{A} command (@code{eww-copy-alternate-url}) copies the URL
-of an alternate link of the current page into the kill ring.  If the
+of an alternate link on the current page into the kill ring.  If the
 page specifies multiple alternate links, this command prompts for one
 of them in the minibuffer, with completion.  Alternate links are
 references that an @acronym{HTML} page may include to point to other
@@ -127,7 +127,7 @@ documents that act as its alternative representations.  Notably,
 translated versions and to @acronym{RSS} feeds.  Alternate links
 appear in the @samp{<head>} section of @acronym{HTML} pages as
 @samp{<link>} elements with @samp{rel} attribute equal to
-@samp{``alternate''}, they are part of the page's metadata and are not
+@samp{``alternate''}; they are part of the page's metadata and are not
 visible in its rendered content.
 
 @findex eww-open-in-new-buffer
index 0f674c6465f35767f745e9be2723894cdb7e376a..3061a147b26192ea889f9b238f6885a14679e9f5 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -268,7 +268,7 @@ bookmark URIs.
 
 +++
 *** New command 'eww-copy-alternate-url'.
-It copies an alternate link to the page currently visited in EWW into
+It copies an alternate link on the page currently visited in EWW into
 the kill ring.  Alternate links are optional metadata that HTML pages
 use for linking to their alternative representations, such as
 translated versions or associated RSS feeds.
index 89f7ba37cc107a02d8c28a2c53494b1bd4b0a1fb..2e7437514275e69ef9ce2db9569d2819aa4b573b 100644 (file)
@@ -2643,8 +2643,9 @@ with completion.  If there are none, return nil."
         (caar alternates)))))
 
 (defun eww-copy-alternate-url ()
-  "Copy an alternate URL of the current page into the kill ring.
-
+  "Copy the alternate URL of the current page into the kill ring.
+If there are multiple alternate links on the current page, prompt
+for one in the minibuffer, with completion.
 Alternate links are references that an HTML page may include to
 point to its alternative representations, such as a translated
 version or an RSS feed."