diff --git a/ShellScripts/rsync-incremental-backups.sh b/ShellScripts/rsync-incremental-backups.sh
index 58b3abe..1d67bf4 100644
--- a/ShellScripts/rsync-incremental-backups.sh
+++ b/ShellScripts/rsync-incremental-backups.sh
@@ -1,20 +1,42 @@
#!/bin/bash
-# A script to perform incremental backups using rsync
+# Script for performing incremental backups using rsync.
+# Set the script to exit if any command returns a non-zero status.
set -o errexit
+# Set the script to treat unset variables as errors.
set -o nounset
+# Set the script to exit if a pipeline returns a non-zero status.
set -o pipefail
-#readonly SOURCE_DIR="${HOME}"
+# Define the source directory you want to back up.
readonly SOURCE_DIR=""
+
+# Define the directory where the backups will be stored.
readonly BACKUP_DIR="