From 7d53aca3b8e7f808c640cad6e9b8543bf12672bb Mon Sep 17 00:00:00 2001
From: Jan Siwiec <jan.siwiec@vsb.cz>
Date: Mon, 15 Jan 2024 12:15:08 +0100
Subject: [PATCH] Update slurm-job-submission-and-execution.md

---
 docs.it4i/general/slurm-job-submission-and-execution.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs.it4i/general/slurm-job-submission-and-execution.md b/docs.it4i/general/slurm-job-submission-and-execution.md
index fb2402e4c..e166d6015 100644
--- a/docs.it4i/general/slurm-job-submission-and-execution.md
+++ b/docs.it4i/general/slurm-job-submission-and-execution.md
@@ -1,7 +1,7 @@
 # Job Submission and Execution
 
 !!! warning
-    Don't use the `#SBATCH -- exclusive` parameter as it is already included in the SLURM configuration.<br><br>
+    Don't use the `#SBATCH --exclusive` parameter as it is already included in the SLURM configuration.<br><br>
     Use the `#SBATCH --mem=` parameter **on `qfat` only**. On `cpu_` queues, whole nodes are allocated.
     Accelerated nodes (`gpu_` queues) are divided each into eight parts with corresponding memory.
 
@@ -81,7 +81,7 @@ Run interactive job, with X11 forwarding:
 $ salloc -A PROJECT-ID -p qcpu_exp --x11
 ```
 
-To finish the interactive job, you can either use the `exit` keyword, or Ctrl+D (`^D`) control sequence.
+To finish the interactive job, use the Ctrl+D (`^D`) control sequence.
 
 !!! warning
     Do not use `srun` for initiating interactive jobs, subsequent `srun`, `mpirun` invocations would block forever.
@@ -153,7 +153,7 @@ Example output of the job:
 ### Job Environment Variables
 
 Slurm provides useful information to the job via environment variables.
-Environment variables are available on all nodes allocated to job when accessed via Slurm supported means (srun, compatible mpirun).
+Environment variables are available on all nodes allocated to job when accessed via Slurm supported means (`srun`, compatible `mpirun`).
 
 See all Slurm variables
 
@@ -321,7 +321,7 @@ Delete all my pending jobs for a project PROJECT-ID:
 $ scancel --me -t pending -A PROJECT-ID
 ```
 
-## Faq
+## Troubleshooting
 
 ### Invalid Account
 
-- 
GitLab