Formatting

This commit is contained in:
Christoph Herzog 2019-05-13 12:35:14 +02:00
parent ffe00b9fa3
commit db0d5952dd
No known key found for this signature in database
GPG key ID: DAFF71D48B493238
2 changed files with 1 additions and 2 deletions

View file

@ -84,7 +84,6 @@ graphql_object!(CommasWithTrailing: () |&self| {
});
struct CommasOnMeta;
graphql_object!(CommasOnMeta: () |&self| {
interfaces: [Interface],
description: "A description",

View file

@ -53,7 +53,7 @@ impl Concrete {
}
}
graphql_union!(CustomName: () as "ACustomNamedUnion" |&self| {
graphql_union!(CustomName: () as "ACustomNamedUnion" |&self| {
instance_resolvers: |&_| {
&Concrete => match *self { CustomName::Concrete(ref c) => Some(c) }
}