summaryrefslogtreecommitdiff
path: root/doc/development
diff options
context:
space:
mode:
authorMarcel Amirault <mamirault@gitlab.com>2019-07-09 08:13:06 +0900
committerMarcel Amirault <mamirault@gitlab.com>2019-07-09 12:42:46 +0900
commit51feffa86e34399896334db04d1e55416107d31f (patch)
tree8dc2228fed1a3e0b381f05b1e87a373a9d74e826 /doc/development
parent1c314771612ee0013638d0b2d0919ee2c59d20b8 (diff)
downloadgitlab-ce-docs-code-block-style.tar.gz
Add languages to code blocksdocs-code-block-style
Diffstat (limited to 'doc/development')
-rw-r--r--doc/development/emails.md2
-rw-r--r--doc/development/profiling.md4
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/development/emails.md b/doc/development/emails.md
index 5a9c657ea10..e6af075a282 100644
--- a/doc/development/emails.md
+++ b/doc/development/emails.md
@@ -26,7 +26,7 @@ See the [Rails guides] for more info.
feature and fill in the details for your specific IMAP server and email
account:
- Configuration for Gmail / Google Apps, assumes mailbox gitlab-incoming@gmail.com
+ Configuration for Gmail / Google Apps, assumes mailbox `gitlab-incoming@gmail.com`:
```yaml
incoming_email:
diff --git a/doc/development/profiling.md b/doc/development/profiling.md
index 1d6a4e5f4bf..e1d1d2e33fa 100644
--- a/doc/development/profiling.md
+++ b/doc/development/profiling.md
@@ -95,7 +95,7 @@ Sherlock is a custom profiling tool built into GitLab. Sherlock is _only_
available when running GitLab in development mode _and_ when setting the
environment variable `ENABLE_SHERLOCK` to a non empty value. For example:
-```
+```sh
ENABLE_SHERLOCK=1 bundle exec rails s
```
@@ -108,7 +108,7 @@ Bullet adds quite a bit of logging noise it's disabled by default. To enable
Bullet, set the environment variable `ENABLE_BULLET` to a non-empty value before
starting GitLab. For example:
-```
+```sh
ENABLE_BULLET=true bundle exec rails s
```