diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-05-15 03:08:10 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-05-15 03:08:10 +0000 |
commit | 31169f0b93010da91b59cada40e17c67295038df (patch) | |
tree | 9f5413f524cc7501f9332cfbfe5d80886a6c588f /doc/api/features.md | |
parent | aebabf8f5a4b5b4ef68221aeb73729f91f11f98f (diff) | |
download | gitlab-ce-31169f0b93010da91b59cada40e17c67295038df.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api/features.md')
-rw-r--r-- | doc/api/features.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/features.md b/doc/api/features.md index 78457076064..e0b2bc920ce 100644 --- a/doc/api/features.md +++ b/doc/api/features.md @@ -102,7 +102,7 @@ Example response: ### Set percentage of actors rollout -Rollout to percentage of users. +Rollout to percentage of actors. ```plaintext POST https://gitlab.example.com/api/v4/features/my_user_feature?private_token=<your_access_token> @@ -122,14 +122,14 @@ Example response: "value": false }, { - "key": "percentage_of_time", + "key": "percentage_of_actors", "value": 42 } ] } ``` -Rolls out the `my_user_feature` to `42%` of users. +Rolls out the `my_user_feature` to `42%` of actors. ## Delete a feature |