emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/javaimp d90f37c352: Fix remaining single quotes in docs


From: Filipp Gunbin
Subject: [elpa] externals/javaimp d90f37c352: Fix remaining single quotes in docstrings
Date: Thu, 9 Jun 2022 16:15:01 -0400 (EDT)

branch: externals/javaimp
commit d90f37c3525b04954eb9dab3bc0778b5cf04c528
Author: Filipp Gunbin <fgunbin@fastmail.fm>
Commit: Filipp Gunbin <fgunbin@fastmail.fm>

    Fix remaining single quotes in docstrings
---
 javaimp-gradle.el | 6 +++---
 javaimp.el        | 8 ++++----
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/javaimp-gradle.el b/javaimp-gradle.el
index 365506d211..608beebb26 100644
--- a/javaimp-gradle.el
+++ b/javaimp-gradle.el
@@ -55,9 +55,9 @@ information."
 (defun javaimp-gradle--handler ()
   "Parse current buffer into list of project descriptors, each of
 which is an alist of attributes (NAME . VALUE).  Each attribute
-occupies one line, and is of the form 'NAME=VALUE'.  See file
-'gradleTaskBody.inc.kts' for the script which generates such
-output.  Attribute 'id' signifies the start of another
+occupies one line, and is of the form \"NAME=VALUE\".  See file
+gradleTaskBody.inc.kts for the script which generates such
+output.  Attribute \"id\" signifies the start of another
 descriptor."
   (goto-char (point-min))
   (let (alist res sym val)
diff --git a/javaimp.el b/javaimp.el
index 9891d8f6c6..ec2d0fee75 100644
--- a/javaimp.el
+++ b/javaimp.el
@@ -387,7 +387,7 @@ Finally, already parsed buffers are processed in
             parsed-bufs)))))))
 
 (defun javaimp--get-current-source-dir ()
-  "Try to determine current root source directory from 'package'
+  "Try to determine current root source directory from \"package\"
 directive in the current buffer.  If there's no such directive,
 then just return `default-directory'."
   (if-let ((package (save-excursion
@@ -673,9 +673,9 @@ its jar dependencies, as well as its source dependencies.
   (javaimp-organize-imports (list (cons classname 'normal))))
 
 (defun javaimp--get-jdk-classes (java-home)
-  "If 'jmods' subdirectory exists in JAVA-HOME (Java 9+), read all
-.jmod files in it.  Else, if 'jre/lib' subdirectory exists in
-JAVA-HOME (earlier Java versions), read all .jar files in it."
+  "If \"jmods\" subdirectory exists in JAVA-HOME (Java 9+), read
+all .jmod files in it.  Else, if \"jre/lib\" subdirectory exists
+in JAVA-HOME (earlier Java versions), read all .jar files in it."
   (let ((dir (file-name-concat java-home "jmods")))
     (if (file-directory-p dir)
         (javaimp--collect-from-files



reply via email to

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