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
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2018-04-23 14:00:11 +0300
committerDouwe Maan <douwe@gitlab.com>2018-04-23 14:00:11 +0300
commit2667fb0c916b289f4bc2b0bbebd324d17322ba37 (patch)
tree396827d7e06c3d4e2ffca164e91b2afe78e4a1aa
parentce9fca8d3a77fc467aa20b50461c07666f71476d (diff)
parent8a1af9f058f63be023fc79d002e193247820e23e (diff)
Merge branch 'jr-fix-project-import-api-typo-docs' into 'master'
Fix minor project import API doc typos See merge request gitlab-org/gitlab-ce!18534
-rw-r--r--doc/api/project_import_export.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/api/project_import_export.md b/doc/api/project_import_export.md
index d8f61852b11..085437c801a 100644
--- a/doc/api/project_import_export.md
+++ b/doc/api/project_import_export.md
@@ -112,13 +112,13 @@ POST /projects/import
| `file` | string | yes | The file to be uploaded |
| `path` | string | yes | Name and path for new project |
| `overwrite` | boolean | no | If there is a project with the same path the import will overwrite it. Default to false |
-| `override_params` | Hash | no | Supports all fields defined in the [Project API](projects.md)] |
+| `override_params` | Hash | no | Supports all fields defined in the [Project API](projects.md) |
-The override params passed will take precendence over all values defined inside the export file.
+The override params passed will take precedence over all values defined inside the export file.
-To upload a file from your filesystem, use the `--form` argument. This causes
+To upload a file from your file system, use the `--form` argument. This causes
cURL to post data using the header `Content-Type: multipart/form-data`.
-The `file=` parameter must point to a file on your filesystem and be preceded
+The `file=` parameter must point to a file on your file system and be preceded
by `@`. For example:
```console