branch: elpa/graphql-mode
commit 43434aa6d55b34522fb1167c5f0c15bb420650cb
Author: David Vázquez Púa <[email protected]>
Commit: David Vázquez Púa <[email protected]>
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.