diff --git a/docs.it4i/anselm/environment-and-modules.md b/docs.it4i/anselm/environment-and-modules.md
index d460fa7023c41f16c9be748205061e78f26da3a9..e28a3405f831409b7bc84edfe410d4b226bb3a57 100644
--- a/docs.it4i/anselm/environment-and-modules.md
+++ b/docs.it4i/anselm/environment-and-modules.md
@@ -42,13 +42,13 @@ The modules may be loaded, unloaded and switched, according to momentary needs.
 To check available modules use
 
 ```console
-$ module avail **or** ml av
+$ ml av
 ```
 
 To load a module, for example the octave module use
 
 ```console
-$ module load octave **or** ml octave
+$ ml octave
 ```
 
 loading the octave module will set up paths and environment variables of your active shell such that you are ready to run the octave software
@@ -56,19 +56,13 @@ loading the octave module will set up paths and environment variables of your ac
 To check loaded modules use
 
 ```console
-$ module list **or** ml
+$ ml
 ```
 
  To unload a module, for example the octave module use
 
 ```console
-$ module unload octave **or** ml -octave
-```
-
-Learn more on modules by reading the module man page
-
-```console
-$ man module
+$ ml -octave
 ```
 
 Following modules set up the development environment
@@ -79,10 +73,6 @@ PrgEnv-intel sets up the INTEL development environment in conjunction with the I
 
 ## Application Modules Path Expansion
 
-All application modules on Salomon cluster (and further) will be build using tool called [EasyBuild](http://hpcugent.github.io/easybuild/ "EasyBuild"). In case that you want to use some applications that are build by EasyBuild already, you have to modify your MODULEPATH environment variable.
-
-```console
-export MODULEPATH=$MODULEPATH:/apps/easybuild/modules/all/
-```
+All application modules on Anselm cluster (and further) will be build using tool called [EasyBuild](http://hpcugent.github.io/easybuild/ "EasyBuild").
 
 This command expands your searched paths to modules. You can also add this command to the .bashrc file to expand paths permanently. After this command, you can use same commands to list/add/remove modules as is described above.