diff --git a/lab2/README.md b/lab2/README.md
index df84236619e0b6b10db59fcb4ee324824c65705e..8bbe1c71f9923bc7d1605c489926908469240989 100644
--- a/lab2/README.md
+++ b/lab2/README.md
@@ -50,14 +50,14 @@ For this exercise you should compare different setups where (a) both MPI ranks a
 
 ```
 salloc -N 1 --ntasks-per-node=2 -A <project> -t 00:05:00
-srun -n 2 ./mpi_latency.x
+mpirun -n 2 ./mpi_latency.x
 ```
 
 or on separate nodes, e.g.
 
 ```
 salloc -N 2 --ntasks-per-node=1 -A <project> -t 00:05:00
-srun -n 2 ./mpi_latency.x
+mpirun -n 2 ./mpi_latency.x
 ```
 
 Compare the different results and reason about the observed values.