浏览代码

Fix a missing trim;

bjorn 8 年之前
父节点
当前提交
49e161346d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      graphql/introspection.lua

+ 1 - 1
graphql/introspection.lua

@@ -346,7 +346,7 @@ __InputValue = types.object({
 __EnumValue = types.object({
   name = '__EnumValue',
 
-  description = [[
+  description = util.trim [[
     One possible value for a given Enum. Enum values are unique values, not
     a placeholder for a string or numeric value. However an Enum value is
     returned in a JSON response as a string.