summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Zagorodny <vzagorodny@gitlab.com>2019-07-23 07:50:43 +0000
committerVictor Zagorodny <vzagorodny@gitlab.com>2019-07-23 07:50:43 +0000
commit930582d83dc179f7ded790121fa1388cb9ae3025 (patch)
tree03b7b5818e989fc32196a8c1c6059a5a50094f63
parent35eede41d506da684613f02fed33bd0c2c523358 (diff)
downloadgitlab-ce-930582d83dc179f7ded790121fa1388cb9ae3025.tar.gz
Apply suggestion to doc/development/shell_scripting_guide/index.md
-rw-r--r--doc/development/shell_scripting_guide/index.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/development/shell_scripting_guide/index.md b/doc/development/shell_scripting_guide/index.md
index 67577a77a32..a0acd50b496 100644
--- a/doc/development/shell_scripting_guide/index.md
+++ b/doc/development/shell_scripting_guide/index.md
@@ -41,8 +41,8 @@ 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. Everywhere else, use `bash` if possible. It's more powerful than `sh` but still a widespread shell.
+- 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.
+- Everywhere else, use `bash` if possible. It's more powerful than `sh` but still a widespread shell.
## Code style and format