Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJames Lopez <james@jameslopez.es>2018-02-16 16:37:26 +0300
committerJames Lopez <james@jameslopez.es>2018-02-16 16:37:26 +0300
commit890d7b540b1ffbadcde490a2e1b741bbb1af3cf4 (patch)
tree4d72dcf00cfb1763d77df17e5d0600a571fc7e40 /lib
parent0abd85f919053efa8a03add9ae43ce9ea2d02ae5 (diff)
update docs
Diffstat (limited to 'lib')
-rw-r--r--lib/api/project_import.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/project_import.rb b/lib/api/project_import.rb
index a6da9b90fe3..c32e2f26ae3 100644
--- a/lib/api/project_import.rb
+++ b/lib/api/project_import.rb
@@ -24,7 +24,7 @@ module API
params do
requires :path, type: String, desc: 'The new project path and name'
requires :file, type: File, desc: 'The project export file to be imported'
- optional :namespace, type: String, desc: 'The ID or name of the namespace that the project will be imported into. Defaults to the user namespace.'
+ optional :namespace, type: String, desc: "The ID or name of the namespace that the project will be imported into. Defaults to the current user's namespace."
end
desc 'Create a new project import' do
detail 'This feature was introduced in GitLab 10.6.'