diff --git a/doc.zih.tu-dresden.de/docs/jobs_and_resources/slurm.md b/doc.zih.tu-dresden.de/docs/jobs_and_resources/slurm.md
index 9323bdc80b7ac849b8858f67eee67892d526aefa..1a1a9d2e8dc61885c16453be6ba6dcbc7d0428d7 100644
--- a/doc.zih.tu-dresden.de/docs/jobs_and_resources/slurm.md
+++ b/doc.zih.tu-dresden.de/docs/jobs_and_resources/slurm.md
@@ -165,13 +165,13 @@ allocation with desired switch count or the time limit expires. Acceptable time
 ## Interactive Jobs
 
 Interactive activities like editing, compiling, preparing experiments etc. are normally limited to
-the login nodes. For longer interactive sessions, you can allocate cores on the compute node with
-the command `salloc`. It takes the same options as `sbatch` to specify the required resources.
+the login nodes. For longer interactive sessions, you can allocate resources on the compute node
+with the command `salloc`. It takes the same options as `sbatch` to specify the required resources.
 
 `salloc` returns a new shell on the node where you submitted the job. You need to use the command
 `srun` in front of the following commands to have these commands executed on the allocated
-resources. If you allocate more than one task, please be aware that `srun` will run the command on
-each allocated task by default! To release the allocated resources, invoke the command `exit` or
+resources. If you request for  more than one task, please be aware that `srun` will run the command
+on each allocated task by default! To release the allocated resources, invoke the command `exit` or
 `scancel <jobid>`.
 
 ```console