From 4ce7e9948af2390a1d5b2f270624995b6c2f6edb Mon Sep 17 00:00:00 2001
From: Martin Schroschk <martin.schroschk@tu-dresden.de>
Date: Wed, 31 Aug 2022 13:54:24 +0200
Subject: [PATCH] Remove keyword TODO

---
 doc.zih.tu-dresden.de/docs/data_lifecycle/workspaces.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

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 bbade6249..e6739ae6d 100644
--- a/doc.zih.tu-dresden.de/docs/data_lifecycle/workspaces.md
+++ b/doc.zih.tu-dresden.de/docs/data_lifecycle/workspaces.md
@@ -235,11 +235,11 @@ calling the actual software to do your computation).
     #SBATCH --constraint=fs_lustre_ssd
     #SBATCH --cpus-per-task=24
 
-    # TODO: Load the software you need here
+    # Load the software you need here
     module purge
     module load <modules>
 
-    # TODO: Adjust the path to where your input file is located
+    # Adjust the path to where your input file is located
     INPUTFILE="/path/to/my/inputfile.data"
 
     test ! -f "${INPUTFILE}" && echo "Error: Could not find the input file ${INPUTFILE}" && exit 1
@@ -248,12 +248,12 @@ calling the actual software to do your computation).
     export WORKSPACE_DIR=$(ws_allocate -F ssd ${COMPUTE_DIR} 7)
     echo ${WORKSPACE_DIR}
 
-    # Check allocation.
+    # Check allocation
     test -z "${WORKSPACE_DIR}" && echo "Error: Cannot allocate workspace ${COMPUTE_DIR}" && exit 1
 
     cd ${WORKSPACE_DIR}
 
-    # TODO: adjust the following line to invoke the program you want to run
+    # Adjust the following line to invoke the program you want to run
     srun name_of_the_program_you_want_to_run_here < "${INPUTFILE}" > logfile.log
 
     # Compress results with bzip2 (which includes CRC32 Checksums)
-- 
GitLab