summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Zagorodny <vzagorodny@gitlab.com>2019-07-09 17:07:49 +0300
committerVictor Zagorodny <vzagorodny@gitlab.com>2019-07-09 17:07:49 +0300
commitfb55409d07c592fb088df6f87399b198e18bfa7d (patch)
treec4aeb4d88f3c1fef60c20c49497dcafae8d7b3f0
parenta1d2ba46363eb6f761940de689c1dcc7afacbdf8 (diff)
downloadgitlab-ce-fb55409d07c592fb088df6f87399b198e18bfa7d.tar.gz
Fix docs:lint offenses
-rw-r--r--doc/development/shell_scripting_guide/index.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/development/shell_scripting_guide/index.md b/doc/development/shell_scripting_guide/index.md
index 08c40974c79..4f1e7d4cf3c 100644
--- a/doc/development/shell_scripting_guide/index.md
+++ b/doc/development/shell_scripting_guide/index.md
@@ -38,8 +38,7 @@ that is:
## Shell language choice
-1. When you need to reduce the dependencies list, use what's provided by the environment.
-For example, for Docker images it's `sh` from `alpine` which is the base image for most of our tool images.
+1. When you need to reduce the dependencies list, use what's provided by the environment.For example, for Docker images it's `sh` from `alpine` which is the base image for most of our tool images.
1. Everywhere else, use `bash` if possible. It's more powerful than `sh` but still a widespread shell.
## Code style and format