diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-03-03 21:08:37 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-03-03 21:08:37 +0000 |
commit | bbaf2bb0438b1c71020d9d216feb528add225a7f (patch) | |
tree | 47409ddbb4994ec78c24503416ab44f129f39ec6 /doc/api | |
parent | e9c2bf267862e22c0770cc7b3a1ed97a8b87a7fd (diff) | |
download | gitlab-ce-bbaf2bb0438b1c71020d9d216feb528add225a7f.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api')
-rw-r--r-- | doc/api/graphql/reference/gitlab_schema.graphql | 6 | ||||
-rw-r--r-- | doc/api/graphql/reference/gitlab_schema.json | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/doc/api/graphql/reference/gitlab_schema.graphql b/doc/api/graphql/reference/gitlab_schema.graphql index 808d54fd86b..d6a0cc97e25 100644 --- a/doc/api/graphql/reference/gitlab_schema.graphql +++ b/doc/api/graphql/reference/gitlab_schema.graphql @@ -4831,16 +4831,16 @@ enum MilestoneStateEnum { } """ -The position the adjacent object should be moved. +The position to which the adjacent object should be moved """ enum MoveType { """ - The adjacent object will be moved after the object that is being moved. + The adjacent object will be moved after the object that is being moved """ after """ - The adjacent object will be moved before the object that is being moved. + The adjacent object will be moved before the object that is being moved """ before } diff --git a/doc/api/graphql/reference/gitlab_schema.json b/doc/api/graphql/reference/gitlab_schema.json index b7fa9b21320..4429bc6621d 100644 --- a/doc/api/graphql/reference/gitlab_schema.json +++ b/doc/api/graphql/reference/gitlab_schema.json @@ -24550,20 +24550,20 @@ { "kind": "ENUM", "name": "MoveType", - "description": "The position the adjacent object should be moved.", + "description": "The position to which the adjacent object should be moved", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { "name": "before", - "description": "The adjacent object will be moved before the object that is being moved.", + "description": "The adjacent object will be moved before the object that is being moved", "isDeprecated": false, "deprecationReason": null }, { "name": "after", - "description": "The adjacent object will be moved after the object that is being moved.", + "description": "The adjacent object will be moved after the object that is being moved", "isDeprecated": false, "deprecationReason": null } |