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 e6739ae6d330adfae4630565b654f4cef541c711..f31e109239aa2d8180f25882dbfa13998c6ba180 100644
--- a/doc.zih.tu-dresden.de/docs/data_lifecycle/workspaces.md
+++ b/doc.zih.tu-dresden.de/docs/data_lifecycle/workspaces.md
@@ -251,6 +251,7 @@ calling the actual software to do your computation).
     # Check allocation
     test -z "${WORKSPACE_DIR}" && echo "Error: Cannot allocate workspace ${COMPUTE_DIR}" && exit 1
 
+    # Change to workspace directory
     cd ${WORKSPACE_DIR}
 
     # Adjust the following line to invoke the program you want to run
@@ -261,6 +262,7 @@ calling the actual software to do your computation).
     RETURN_CODE=$?
     COMPRESSION_SUCCESS="$(if test ${RETURN_CODE} -eq 0; then echo 'TRUE'; else echo 'FALSE'; fi)"
 
+    # Clean up workspace
     if [ "TRUE" = ${COMPRESSION_SUCCESS} ]; then
         test -d ${WORKSPACE_DIR} && rm -rf ${WORKSPACE_DIR}/*
         # Reduces grace period to 1 day!
diff --git a/doc.zih.tu-dresden.de/docs/software/nanoscale_simulations.md b/doc.zih.tu-dresden.de/docs/software/nanoscale_simulations.md
index c60714158eb1a02a19e208bb40660e1cf7f8dc80..db2765935a86b3d1960c5cb4bfcbf2bde8cc5b06 100644
--- a/doc.zih.tu-dresden.de/docs/software/nanoscale_simulations.md
+++ b/doc.zih.tu-dresden.de/docs/software/nanoscale_simulations.md
@@ -154,6 +154,7 @@ However hereafter we have an example on how that might look like for Gaussian:
     RETURN_CODE=$?
     COMPRESSION_SUCCESS="$(if test ${RETURN_CODE} -eq 0; then echo 'TRUE'; else echo 'FALSE'; fi)"
 
+    # Clean up workspace
     if [ "TRUE" = ${COMPRESSION_SUCCESS} ]; then
         test -d ${GAUSS_SCRDIR} && rm -rf ${GAUSS_SCRDIR}/*
         # Reduces grace period to 1 day!