Skip to content

Commit b66dbe9

Browse files
committed
fix spelling
1 parent 619fe9d commit b66dbe9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/software/uenv/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ module load ncview
613613
```
614614

615615
This will make custom modules available, and load `ncview`, every time you log in.
616-
It is not posible to do the equivalent with `uenv start`, for example:
616+
It is not possible to do the equivalent with `uenv start`, for example:
617617
```bash title="~/.bashrc"
618618
# start the uenv that I always use
619619
uenv start prgenv-gnu/24.11:v2 --view=default
@@ -631,16 +631,16 @@ module load ncview
631631

632632
Things are further complicated because if `uenv start` is executed inside `~/.bashrc`, the shell is not a tty shell.
633633

634-
It is possible to create a custom command that will start a new shell with a uenv loaded, with additional customisations to the environment (e.g. loading modules and setting environment variables).
634+
It is possible to create a custom command that will start a new shell with a uenv loaded, with additional customizations to the environment (e.g. loading modules and setting environment variables).
635635

636-
The first step is to create a script that performs the the customisation steps to perform once the uenv has been loaded.
636+
The first step is to create a script that performs the the customization steps to perform once the uenv has been loaded.
637637
Here is an example for an environment called `myenv`:
638638

639639
```bash title="~/.myenvrc"
640640
# always add this line
641641
source ~/.bashrc
642642

643-
# then add customisation commands here
643+
# then add customization commands here
644644
module use $STORE/myenv/modules
645645
module load ncview
646646
export DATAPATH=$STORE/2025/data
@@ -652,7 +652,7 @@ Then create an alias in `~/.bashrc` for the `myenv` environment:
652652
alias myenv='uenv run prgenv-gnu/24.11:v2 --view=default -- bash --rcfile ~/.myenvrc'
653653
```
654654

655-
This alias uses `uenv run` to start a new bash shell that will apply the customisations in `~/.myenvrc` once the uenv has been loaded.
655+
This alias uses `uenv run` to start a new bash shell that will apply the customizations in `~/.myenvrc` once the uenv has been loaded.
656656
Then, the environment can be started with a single command once logged in.
657657

658658
```console

0 commit comments

Comments
 (0)