diff --git a/doc.zih.tu-dresden.de/docs/data_lifecycle/workspaces.md b/doc.zih.tu-dresden.de/docs/data_lifecycle/workspaces.md
index 6214609ae7fb647edae6d9a2ba460eda459389a2..cf5be249cbf03787c4fe020d0d01189c3d2d3e88 100644
--- a/doc.zih.tu-dresden.de/docs/data_lifecycle/workspaces.md
+++ b/doc.zih.tu-dresden.de/docs/data_lifecycle/workspaces.md
@@ -85,6 +85,7 @@ provides information which filesystem is available on which cluster.
 
     ```console
     marie@login.taurus$ ws_list -l
+    available filesystems:
     scratch (default)
     warm_archive
     ssd
@@ -120,7 +121,8 @@ overview of some of these options. All available options can be queried by `ws_l
 
 === "Certain filesystem"
 
-    ```
+    ```console
+    marie@login$ ws_list --filesystem=walrus
     id: marie-numbercrunch
         workspace directory  : /data/walrus/ws/marie-numbercrunch
         remaining time       : 89 days 23 hours
@@ -132,7 +134,7 @@ overview of some of these options. All available options can be queried by `ws_l
 
 === "Verbose output"
 
-    ```
+    ```console
     marie@login$ ws_list -v
     id: test-workspace
         workspace directory  : /data/horse/ws/0/marie-test-workspace
@@ -148,7 +150,7 @@ overview of some of these options. All available options can be queried by `ws_l
 
 === "Terse output"
 
-    ```
+    ```console
     marie@login$ ws_list -t
     id: test-workspace
         workspace directory  : /data/horse/ws/marie-test-workspace
@@ -162,7 +164,7 @@ overview of some of these options. All available options can be queried by `ws_l
 
 === "Show only names"
 
-    ```
+    ```console
     marie@login$ ws_list -s
     test-workspace
     numbercrunch
@@ -334,7 +336,7 @@ The command `ws_send_ical` sends you an ical event on the expiration date of a s
 ### Deletion of a Workspace
 
 To delete a workspace use the `ws_release` command. It is mandatory to specify the name of the
-workspace and the filesystem in which it is located:
+workspace and the filesystem in which it is allocated:
 
 ```console
 marie@login$ ws_release --filesystem=horse --name=test-workspace
@@ -378,7 +380,7 @@ It performs the following steps once per day and filesystem:
 
 ### Restoring Expired Workspaces
 
-At expiration time your workspace will be moved to a special, hidden directory. For a month, 
+At expiration time your workspace will be moved to a special, hidden directory. For a month,
 you can still restore your data **into an existing workspace**.
 
 !!! warning
@@ -391,7 +393,7 @@ you can still restore your data **into an existing workspace**.
 Use
 
 ```console
-marie@login$ ws_restore --list --filesystem=horse
+marie@login$ ws_restore --list
 horse:
 marie-test-workspace-1701873807
 	unavailable since Wed Dec  6 15:43:27 2023
@@ -479,7 +481,7 @@ the following example (which works [for the program g16](../software/nanoscale_s
 
     # Allocate workspace for this job. Adjust time span to time limit of the job (-d <N>).
     WSNAME=computation_$SLURM_JOB_ID
-    export WSDDIR=$(ws_allocate --filesystem=horse --name=${WSNAME} --duration=2)
+    export WSDDIR=$(ws_allocate --filesystem=ssd --name=${WSNAME} --duration=2)
     echo ${WSDIR}
 
     # Check allocation
@@ -531,8 +533,8 @@ remaining time in days: 99
 
 You can grant your project group access rights:
 
-```
-chmod g+wrx /data/horse/ws/marie-my_scratchdata
+```console
+marie@login$ chmod g+wrx /data/horse/ws/marie-my_scratchdata
 ```
 
 And verify it with:
@@ -604,7 +606,7 @@ to others (if in the same group) via `ws_list -g`.
     ```console
     marie@login$ ws_allocate --group --name=numbercrunch --duration=30
     Info: creating workspace.
-    /data/horse/ws/0/marie-numbercrunch
+    /data/horse/ws/marie-numbercrunch
     remaining extensions  : 10
     remaining time in days: 30
     ```
@@ -612,7 +614,7 @@ to others (if in the same group) via `ws_list -g`.
     This workspace directory is readable for the group, e.g.,
 
     ```console
-    marie@login$ ls -ld /data/horse/ws/0/marie-numbercrunch
+    marie@login$ ls -ld /data/horse/ws/marie-numbercrunch
     drwxr-x--- 2 marie p_number_crunch 4096 Mar  2 15:24 /data/horse/ws/0/marie-numbercrunch
     ```
 
@@ -622,7 +624,7 @@ to others (if in the same group) via `ws_list -g`.
     ```console
     martin@login$ ws_list -g -t
     id: numbercrunch
-         workspace directory  : /data/horse/ws/0/marie-numbercrunch
+         workspace directory  : /data/horse/ws/marie-numbercrunch
          remaining time       : 29 days 23 hours
          available extensions : 10
     ```