diff --git a/docs.it4i/salomon/software/numerical-libraries/Clp.md b/docs.it4i/salomon/software/numerical-libraries/Clp.md
index ecc94dabaf3e8c0246a7c6ad95c06a08fc2ec789..da22ec34162ece785041cb47bf4f16bf042678d2 100644
--- a/docs.it4i/salomon/software/numerical-libraries/Clp.md
+++ b/docs.it4i/salomon/software/numerical-libraries/Clp.md
@@ -1,16 +1,16 @@
 # Clp
 
 ## Introduction
-The Clp (Coin-or linear programming) is an open-source linear programming solver written in C++. It is primarily meant to be used as a callable library, but a basic, stand-alone executable version is also available. The library 
+Clp (Coin-or linear programming) is an open-source linear programming solver written in C++. It is primarily meant to be used as a callable library, but a basic, stand-alone executable version is also available.
 
-The Clp (https://projects.coin-or.org/Clp) is a part of COIN-OR (The Computational Infrastracture for Operations Research) project (https://www.coin-or.org/).
+Clp (https://projects.coin-or.org/Clp) is a part of the COIN-OR (The Computational Infrastracture for Operations Research) project (https://www.coin-or.org/).
 
 ## Modules
-The Clp, version 1.16.10 is available on Salomon via module Clp:
+Clp, version 1.16.10 is available on Salomon via module Clp:
 ```sh
 $ ml Clp
 ```
-The module sets up environment variables, required for linking and running applications using Clp. This particular command loads the default module, which is Clp/1.16.10-intel-2017a. The module use intel compiler.
+The module sets up environment variables required for linking and running applications using Clp. This particular command loads the default module Clp/1.16.10-intel-2017a, Intel module intel/2017a and other related modules.
 
 ## Compiling and linking
 !!! note
@@ -24,7 +24,7 @@ $ icc myprog.c -o myprog.x -Wl,-rpath=$LIBRARY_PATH -lClp
 ```
 
 ## Example
-Following is an example of Clp enabled application. The library solve linear programming problem loaded from file.
+An example of Clp enabled application follows. In this example, the library solves linear programming problem loaded from file.
 
 ```cpp
 #include "coin/ClpSimplex.hpp"
@@ -49,4 +49,4 @@ int main (int argc, const char *argv[])
 ml Clp
 icc lp.c -o lp.x -Wl,-rpath=$LIBRARY_PATH -lClp
 ```
-In this example, the lp.c code is compiled using the Intel compiler and link it to the Clp. To run the code, the Intel module have to be loaded. 
\ No newline at end of file
+In this example, the lp.c code is compiled using the Intel compiler and linked with Clp. To run the code, the Intel module has to be loaded. 
\ No newline at end of file