branch: externals/graphql
commit 4d2837ddbe807c1f004c3a732174aada50e7fc70
Author: Sean Allred <c...@seanallred.com>
Commit: Sean Allred <c...@seanallred.com>

    Fix format bug for :name
---
 graphql.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/graphql.el b/graphql.el
index 2319d70a7d..18b73091c1 100644
--- a/graphql.el
+++ b/graphql.el
@@ -89,7 +89,7 @@
               (format "(%s)"
                       (mapconcat #'graphql--encode-parameter-pair arguments 
",")))
             (when name
-              (format " %S") name)
+              (format " %S" name))
             (when fields
               (format " { %s }"
                       (mapconcat #'graphql--encode fields " ")))))))))

Reply via email to