emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 5a4d50d 2/2: Minor doc fixes in dictionary-connection.el


From: Stefan Kangas
Subject: master 5a4d50d 2/2: Minor doc fixes in dictionary-connection.el
Date: Sun, 7 Feb 2021 10:08:51 -0500 (EST)

branch: master
commit 5a4d50dfb136080fa2353461ee888d552da44a29
Author: Stefan Kangas <stefan@marxist.se>
Commit: Stefan Kangas <stefan@marxist.se>

    Minor doc fixes in dictionary-connection.el
    
    * lisp/net/dictionary-connection.el:
    (dictionary-connection-p, dictionary-connection-read-to-point):
    Minor doc fixes to adhere to our conventions.
---
 lisp/net/dictionary-connection.el | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/lisp/net/dictionary-connection.el 
b/lisp/net/dictionary-connection.el
index 2404a36..8ad4fe4 100644
--- a/lisp/net/dictionary-connection.el
+++ b/lisp/net/dictionary-connection.el
@@ -23,14 +23,14 @@
 ;;; Commentary:
 
 ;; dictionary-connection allows to handle TCP-based connections in
-;; client mode where text-based information are exchanged. There is
+;; client mode where text-based information are exchanged.  There is
 ;; special support for handling CR LF (and the usual CR LF . CR LF
 ;; terminater).
 
 ;;; Code:
 
 (defsubst dictionary-connection-p (connection)
-  "Returns non-nil if CONNECTION is a connection object."
+  "Return non-nil if CONNECTION is a connection object."
   (get connection 'connection))
 
 (defsubst dictionary-connection-read-point (connection)
@@ -149,8 +149,7 @@ nil: argument is no connection object
 
 (defun dictionary-connection-read-to-point (connection)
   "Read from CONNECTION until an end of entry is encountered.
-End of entry is a decimal point found on a line by itself.
-"
+End of entry is a decimal point found on a line by itself."
   (dictionary-connection-read connection "\015?\012[.]\015?\012"))
 
 (provide 'dictionary-connection)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]