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/doc
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2018-04-04 18:25:54 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2018-04-04 18:25:54 +0300
commitaff9bf11d98febc038b7deedfafb3b361ad392b2 (patch)
treecbf91cde3cf315e2c6e2595ed2f29db4a6f54498 /doc
parentf8365c3d6dc0925ff1ae7eda09fb4fab8884c58b (diff)
parent64ef7517af80ff3aeffe45af79549ab84b4bf040 (diff)
Merge branch 'pdeden/gitlab-ee-patch-7' into 'master'
Fix syntax error in the `Envoy.blade.php` example See merge request gitlab-org/gitlab-ce!18177
Diffstat (limited to 'doc')
-rw-r--r--doc/ci/examples/laravel_with_gitlab_and_envoy/index.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ci/examples/laravel_with_gitlab_and_envoy/index.md b/doc/ci/examples/laravel_with_gitlab_and_envoy/index.md
index b62874ef029..1f9b9d53fc1 100644
--- a/doc/ci/examples/laravel_with_gitlab_and_envoy/index.md
+++ b/doc/ci/examples/laravel_with_gitlab_and_envoy/index.md
@@ -190,7 +190,7 @@ To start, we create an `Envoy.blade.php` in the root of our app with a simple ta
```php
@servers(['web' => 'remote_username@remote_host'])
-@task('list', [on => 'web'])
+@task('list', ['on' => 'web'])
ls -l
@endtask
```