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

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

[nongnu] elpa/graphql-mode 43434aa6d5 061/122: Format some docs and docs


From: ELPA Syncer
Subject: [nongnu] elpa/graphql-mode 43434aa6d5 061/122: Format some docs and docstrings
Date: Sat, 29 Jan 2022 08:03:33 -0500 (EST)

branch: elpa/graphql-mode
commit 43434aa6d55b34522fb1167c5f0c15bb420650cb
Author: David Vázquez Púa <davazp@gmail.com>
Commit: David Vázquez Púa <davazp@gmail.com>

    Format some docs and docstrings
---
 graphql-mode.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/graphql-mode.el b/graphql-mode.el
index bbcf540999..67d59b2b45 100644
--- a/graphql-mode.el
+++ b/graphql-mode.el
@@ -22,7 +22,7 @@
 ;;; Commentary:
 
 ;; This package implements a major mode to edit GraphQL schemas and
-;; query. The basic functionality includes:
+;; query.  The basic functionality includes:
 ;;
 ;;    - Syntax highlight
 ;;    - Automatic indentation
@@ -69,7 +69,7 @@
   :group 'graphql)
 
 (defun graphql-encode-json (query &optional operation variables)
-  "Put together a json like object with query, operation, and variables."
+  "Put together a json like object with QUERY, OPERATION, and VARIABLES."
   (let* ((body '()))
     (push (cons 'query query) body)
     (when operation
@@ -249,11 +249,11 @@ VARIABLES list of variables for query operation"
 
 (defvar graphql-builtin-types
   '("Int" "Float" "String" "Boolean" "ID")
-  "Buildin Types")
+  "Built-in GraphQL Types.")
 
 (defvar graphql-constants
   '("true" "false" "null")
-  "Constant Types.")
+  "Constant GraphQL Types.")
 
 
 ;;; Check if the point is in an argument list.



reply via email to

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