From 642e6339a460ec32d30c0ca7ae7cf8fd6e7ea3c8 Mon Sep 17 00:00:00 2001 From: Johannes Loher Date: Thu, 7 Jun 2018 23:25:07 +0200 Subject: [PATCH] formatting --- hands-on_dlang.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hands-on_dlang.md b/hands-on_dlang.md index 218bc33..d2a7c2b 100644 --- a/hands-on_dlang.md +++ b/hands-on_dlang.md @@ -1349,7 +1349,11 @@ unittest { To execute the unittests, just compile with the `-unittest` flag. When running the program, the unittests get run before the main function is executed. When -using DUB, just run `dub test`. +using DUB, just run + +```bash +dub test +``` #### Code coverage