summaryrefslogtreecommitdiff
path: root/doc/administration/operations
diff options
context:
space:
mode:
authorMarcel Amirault <mamirault@gitlab.com>2019-07-11 22:53:54 +0000
committerEvan Read <eread@gitlab.com>2019-07-11 22:53:54 +0000
commitb71835818a65d2aa8ae81b4a7dd6ba8689bc55ae (patch)
treedc8d4b7c33ed6b4b767793281386bdfc2ff31450 /doc/administration/operations
parente1d1728d409b87916d82698ca107b2c7ba65507e (diff)
downloadgitlab-ce-b71835818a65d2aa8ae81b4a7dd6ba8689bc55ae.tar.gz
Remove hard tabs from docs
Hard tabs do not follow general markdown guidelines are were removed from the few docs that used them
Diffstat (limited to 'doc/administration/operations')
-rw-r--r--doc/administration/operations/filesystem_benchmarking.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/administration/operations/filesystem_benchmarking.md b/doc/administration/operations/filesystem_benchmarking.md
index 4a6e22bdb84..b5922d9d99d 100644
--- a/doc/administration/operations/filesystem_benchmarking.md
+++ b/doc/administration/operations/filesystem_benchmarking.md
@@ -106,9 +106,9 @@ important metric is the `real` time.
```sh
$ time for i in {0..1000}; do echo 'test' > "test${i}.txt"; done
-real 0m0.116s
-user 0m0.025s
-sys 0m0.091s
+real 0m0.116s
+user 0m0.025s
+sys 0m0.091s
$ time for i in {0..1000}; do cat "test${i}.txt" > /dev/null; done