diff --git a/Scripts/Bash/Functions/Help/help_getOptions.sh b/Scripts/Bash/Functions/Help/help_getOptions.sh
index 5d413af..0e86eb3 100755
--- a/Scripts/Bash/Functions/Help/help_getOptions.sh
+++ b/Scripts/Bash/Functions/Help/help_getOptions.sh
@@ -106,23 +106,23 @@ function help_getOptions {
                 shift 1
                 ;;
     
-            --update-structure )
-                ACTIONNAM="updateStructureSection"
-                shift 1
-                ;;
-    
             --update-output )
                 ACTIONNAM="updateOutputFiles"
                 shift 1
                 ;;
 
+            --update-structure )
+                ACTIONNAM="updateStructureSection"
+                shift 1
+                ;;
+
             -- )
                 # Remove the `--' argument from the list of arguments
                 # in order for processing non-option arguments
                 # correctly. At this point all option arguments have
                 # been processed already but the `--' argument still
                 # remains to mark ending of option arguments and
-                # begining of non-option arguments. The `--' argument
+                # beginning of non-option arguments. The `--' argument
                 # needs to be removed here in order to avoid
                 # centos-art.sh script to process it as a path inside
                 # the repository, which obviously is not.