diff --git a/docs.it4i/software/intel/intel-suite/intel-tbb.md b/docs.it4i/software/intel/intel-suite/intel-tbb.md
index 545f69ba561fff22decdd96c522b9e5274bbc66a..19eb9af05c8a175e7b51871602a06418e7c6c747 100644
--- a/docs.it4i/software/intel/intel-suite/intel-tbb.md
+++ b/docs.it4i/software/intel/intel-suite/intel-tbb.md
@@ -10,13 +10,13 @@ Intel is available on the cluster.
 $ ml av tbb
 ```
 
-The module sets up environment variables, required for linking and running tbb enabled applications.
+The module sets up environment variables, required for linking and running TBB-enabled applications.
 
-Link the tbb library, using -ltbb
+Link the TBB library using -ltbb.
 
 ## Examples
 
-Number of examples, demonstrating use of TBB and its built-in scheduler is available on Anselm, in the $TBB_EXAMPLES directory.
+A number of examples demonstrating use of TBB and its built-in scheduler is available on Anselm, in the $TBB_EXAMPLES directory.
 
 ```console
 $ ml intel
@@ -27,9 +27,9 @@ $ icc -O2 -DNDEBUG -o primes.x main.cpp primes.cpp -ltbb
 $ ./primes.x
 ```
 
-In this example, we compile, link and run the primes example, demonstrating use of parallel task-based reduce in computation of prime numbers.
+In this example, we compile, link, and run the primes example, demonstrating use of parallel task-based reduce in computation of prime numbers.
 
-You will need the tbb module loaded to run the tbb enabled executable. This may be avoided, by compiling library search paths into the executable.
+You will need the tbb module loaded to run the TBB-enabled executable. This may be avoided by compiling library search paths into the executable.
 
 ```console
 $ icc -O2 -o primes.x main.cpp primes.cpp -Wl,-rpath=$LIBRARY_PATH -ltbb