Przeglądaj źródła

Fix a missing trim;

bjorn 8 lat temu
rodzic
commit
49e161346d
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      graphql/introspection.lua

+ 1 - 1
graphql/introspection.lua

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