diff options
author | Michael Muré <batolettre@gmail.com> | 2019-06-23 21:29:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-23 21:29:04 +0200 |
commit | 17cbe457d2d782bee914680b38fa101c9327b811 (patch) | |
tree | 54913e122381b3b6fb3c09410870b030ee5b55f3 /graphql/schema | |
parent | 9f4da4ce4fbbf23798b80289af170c9c42ac73eb (diff) | |
download | git-bug-17cbe457d2d782bee914680b38fa101c9327b811.tar.gz |
graphql: fix typo
Diffstat (limited to 'graphql/schema')
-rw-r--r-- | graphql/schema/root.graphql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphql/schema/root.graphql b/graphql/schema/root.graphql index 4a89c825..f66272ca 100644 --- a/graphql/schema/root.graphql +++ b/graphql/schema/root.graphql @@ -16,7 +16,7 @@ type Mutation { openBug(input: OpenBugInput!): OpenBugPayload! """Change a bug's status to closed""" closeBug(input: CloseBugInput!): CloseBugPayload! - """Change a bug's titlel""" + """Change a bug's title""" setTitle(input: SetTitleInput!): SetTitlePayload! """Commit write the pending operations into storage. This mutation fail if nothing is pending""" commit(input: CommitInput!): CommitPayload! |