Update index.md

Syntax typo error fix.
This commit is contained in:
Gorjan Mishevski 2017-12-11 01:01:15 +01:00 committed by GitHub
parent e1ccd84c16
commit fde265ed6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -358,7 +358,7 @@ Here are a few things I use to clean things up.
```
dclean() {
processes=`docker ps -q -f status=exited`
if [ -n "$processes" ]; thend
if [ -n "$processes" ]; then
docker rm $processes
fi