diff --git a/Scripts/Functions/Help/help_renameCrossReferences.sh b/Scripts/Functions/Help/help_renameCrossReferences.sh
index 40a6d41..590891f 100755
--- a/Scripts/Functions/Help/help_renameCrossReferences.sh
+++ b/Scripts/Functions/Help/help_renameCrossReferences.sh
@@ -33,14 +33,14 @@ function help_renameCrossReferences {
 
     # Define node pattern for source documenation entry.
     NODE_SRC=$(echo "$ENTRY" \
-        | cut -d / -f8- \
+        | cut -d / -f7- \
         | tr '/' ' ' \
         | sed -r \
             -e "s/(chapter-intro\.texi|\.texi)$//")
 
     # Define node replacement for target documentation entry.
     NODE_DST=$(echo "$ENTRY_DST" \
-        | cut -d / -f8- \
+        | cut -d / -f7- \
         | tr '/' ' ' \
         | sed -r \
             -e "s/(chapter-intro\.texi|\.texi)$//")