File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -100,13 +100,13 @@ The [`srun`](https://slurm.schedmd.com/srun.html) is used to initiate parallel j
100100- ` srun ` automatically allocates a job in a blocking manner similar to ` salloc ` , and
101101- when the requested resources become available, it launches a single job step to run the provided command.
102102
103- !!! info "Lunching interactive jobs with ` srun ` "
103+ !!! info "Launching interactive jobs with ` srun ` "
104104 To create an implicit job allocation and launch a job step with ` srun ` provide the usual options usually required by ` salloc ` or ` sbatch ` .
105105 ```bash
106106 srun --partition=<partition > [ --qos=<qos >] [ --account=<account >] [ ...] <command >
107107 ```
108108
109- !!! info "Lunching interactive shells with ` srun ` "
109+ !!! info "Launching interactive shells with ` srun ` "
110110 To launch an interactive shell in an implicit job allocation, use the [ ` --pty ` option] ( https://slurm.schedmd.com/srun.html#OPT_pty ) .
111111 ```bash
112112 srun --partition=<partition > [ --qos=<qos >] [ --account=<account >] [ ...] --pty bash --login
You can’t perform that action at this time.
0 commit comments