branch: elpa/graphql-mode
commit 6700768210e888ccdc0a0a2ae7bf1eba8eadfab6
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>
Fix new compiler warnings
graphql-mode.el:210:2: Warning: docstring wider than 80 characters
graphql-mode.el:210:2: Warning: docstring has wrong usage of \
unescaped single quotes (use \=' or different quoting such as `...')
---
graphql-mode.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/graphql-mode.el b/graphql-mode.el
index 4671efced6c..74170c77c96 100644
--- a/graphql-mode.el
+++ b/graphql-mode.el
@@ -216,8 +216,8 @@ VARIABLES is the variables alist.
UPLOAD-FILES is a list of (VAR-NAME . FILE-PATH) cons cells.
BOUNDARY is the multipart boundary string.
-Returns the complete multipart body as a unibyte string.
-Equivalent to curl -F 'query=...' -F 'variables=...' -F 'map=...' -F
'file=@...'."
+Returns the complete multipart body as a unibyte string. Equivalent
+to curl -F \\='query=...' -F \\='variables=...\\=' -F \\='map=...' -F
\\='file=@...'."
(let* ((map-obj '())
(parts '()))