branch: elpa/popup
commit 46e610415bf4159467edf61d3e443cffb8d1eef8
Author: jenchieh <jcs090...@gmail.com>
Commit: jenchieh <jcs090...@gmail.com>

    Fixed some checkdoc warnings.
---
 popup.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/popup.el b/popup.el
index cffab50..b454af6 100644
--- a/popup.el
+++ b/popup.el
@@ -22,7 +22,7 @@
 
 ;;; Commentary:
 
-;; popup.el is a visual popup user interface library for Emacs. This
+;; popup.el is a visual popup user interface library for Emacs.  This
 ;; provides a basic API and common UI widgets such as popup tooltips
 ;; and popup menus.
 ;; See README.markdown for more information.
@@ -38,8 +38,8 @@
 ;;; Utilities
 
 (defun popup-calculate-max-width (max-width)
-  "Determines whether the width desired is
-character or window proportion based, And returns the result."
+  "Determines whether the width with MAX-WIDTH desired is character or window \
+proportion based, And return the result."
   (cl-typecase max-width
     (integer max-width)
     (float (* (ceiling (/ (round (* max-width (window-width))) 10.0)) 10))))

Reply via email to