diff --git a/docs/configure-wine.md b/docs/configure-wine.md
index e530ed720ccc048c41d303ff64a2f6ba1163b475..b3d2225cbc3bace5306bd0241259a740eea405ef 100644
--- a/docs/configure-wine.md
+++ b/docs/configure-wine.md
@@ -30,7 +30,7 @@ the HAWC2 executables in here:
 
 ```
 WINEDIRNAME=".wine32"
-printf 'REGEDIT4\n[HKEY_CURRENT_USER\Environment]\n"PATH"="c:\\bin"' >> ./tmp.reg
+printf 'REGEDIT4\n[HKEY_CURRENT_USER\\Environment]\n"PATH"="c:\\bin"' >> ./tmp.reg
 WINEARCH=win32 WINEPREFIX=~/$WINEDIRNAME wine regedit ./tmp.reg
 rm ./tmp.reg
 ```
diff --git a/docs/howto-make-dlcs.md b/docs/howto-make-dlcs.md
index 8dac22304f2c0ac552cdb794974aa005d54a585c..a8fa01518aacf3a578f741f09939ca01cd14af30 100644
--- a/docs/howto-make-dlcs.md
+++ b/docs/howto-make-dlcs.md
@@ -75,7 +75,7 @@ On Linux/Mac connecting to the cluster is as simple as running the following
 command in the terminal:
 
 ```
-g-000 $ ssh $USER@gorm.risoe.dk
+ssh $USER@gorm.risoe.dk
 ```
 
 Use your DTU password when asked. This will give you terminal access to the
@@ -155,7 +155,7 @@ local wine directory, which by default is assumed to be ```~/.wine32```, and
 ```pbsutils``` contains and automatic configuration script you can run:
 
 ```
-g-000 $ ./config-wine-hawc2.sh
+g-000 $ config-wine-hawc2.sh
 ```
 
 If you need more information on what is going on, you can read a more detailed
@@ -529,7 +529,7 @@ optional arguments:
   -h, --help         show this help message and exit
   --prep             create htc, pbs, files (default=False)
   --check_logs       check the log files (default=False)
-  --stats            calculate statistics (default=False)
+  --stats            calculate statistics and 1Hz equivalent loads (default=False)
   --fatigue          calculate Leq for a full DLC (default=False)
   --csv              Save data also as csv file (default=False)
   --years YEARS      Total life time in years (default=20)
diff --git a/docs/install-anaconda.md b/docs/install-anaconda.md
index a785a5309f9548b0f7f9ebf01de6c41c133db29a..ad6213fc169a5d3c30e9459669f21d89d5bb20ae 100644
--- a/docs/install-anaconda.md
+++ b/docs/install-anaconda.md
@@ -9,7 +9,7 @@ conda update --all
 conda create -n wetb_py3 python=3.5
 source activate wetb_py3
 conda install setuptools_scm future h5py pytables pytest nose sphinx
-conda install scipy pandas matplotlib cython xlrd sphinx
+conda install scipy pandas matplotlib cython xlrd coverage
 pip install pyscaffold pytest-cov
 ```