From 3e88f2b1f250d7c59f0e80465df378cf996e46a4 Mon Sep 17 00:00:00 2001
From: Jan Siwiec <jan.siwiec@vsb.cz>
Date: Tue, 3 Oct 2023 11:13:02 +0200
Subject: [PATCH] Update slurm-job-submission-and-execution.md

---
 .../slurm-job-submission-and-execution.md     | 20 +++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/docs.it4i/general/slurm-job-submission-and-execution.md b/docs.it4i/general/slurm-job-submission-and-execution.md
index 8216ff73f..6d468c145 100644
--- a/docs.it4i/general/slurm-job-submission-and-execution.md
+++ b/docs.it4i/general/slurm-job-submission-and-execution.md
@@ -107,19 +107,19 @@ srun hostname | sort | uniq -c
 Script will:
 
 * use bash shell interpreter
-* use MyJobName as job name
-* use project PROJECT-ID for job access and accounting
-* use partition/queue qcpu
-* use four nodes
-* use 128 tasks per node - value used by MPI
-* set job time limit to 12 hours
+* use `MyJobName` as job name
+* use project `PROJECT-ID` for job access and accounting
+* use partition/queue `qcpu`
+* use `4` nodes
+* use `128` tasks per node - value used by MPI
+* set job time limit to `12` hours
 
 * load appropriate module
-* run command, srun serves as Slurm's native way of executing MPI-enabled applications, hostname is used in the example just for sake of simplicity
+* run command, `srun` serves as Slurm's native way of executing MPI-enabled applications, `hostname` is used in the example just for sake of simplicity
 
 Submit directory will be used as working directory for submitted job,
 so there is no need to change directory in the job script.
-Alternatively you can specify job working directory using sbatch `--chdir` (or shortly `-D`) option.
+Alternatively you can specify job working directory using the sbatch `--chdir` (or shortly `-D`) option.
 
 ### Job Submit
 
@@ -131,10 +131,10 @@ $ sbatch script.sh
 ```
 
 A path to `script.sh` (relative or absolute) should be given
-if the job script is in different location than the job working directory.
+if the job script is in a different location than the job working directory.
 
 By default, job output is stored in a file called `slurm-JOBID.out` and contains both job standard output and error output.
-This can be changed using sbatch options `--output` (shortly `-o`) and `--error` (shortly `-e`).
+This can be changed using the sbatch options `--output` (shortly `-o`) and `--error` (shortly `-e`).
 
 Example output of the job:
 
-- 
GitLab