diff --git a/includes/css/css.settings.inc b/includes/css/css.settings.inc
index a74b081..7f12703 100644
--- a/includes/css/css.settings.inc
+++ b/includes/css/css.settings.inc
@@ -63,11 +63,11 @@ function omega_class_rules_element_validate($element, &$form_state) {
   foreach ($values as $rule) {
     if (!preg_match('/^(\+|-)([a-z_]+)(:([a-z_])*)?\[(([a-z\-]+|(\*(?!\*))|\[[a-zA-Z0-9_# ]+(:[a-zA-Z0-9_# ]+)*\])+)\]$/', $rule, $matches)) {
       // The class rule doesn't match the regex pattern.
-      form_error($element, t('At least one of te provided class rules is invalid: @rule.', array('@rule' => $rule)), $form_state);
+      form_error($element, t('At least one of the provided class rules is invalid: @rule.', array('@rule' => $rule)), $form_state);
     }
     elseif ($matches[1] == '+' && strpos($rule, '*') !== FALSE) {
       // 'Add' rules don't support wildcards of course.
-      form_error($element, t("Wildcards (asterix characters) are not supported by 'add' (+) rules: @rule.", array('@rule' => $rule)), $form_state);
+      form_error($element, t("Wildcards (asterisk characters) are not supported by 'add' (+) rules: @rule.", array('@rule' => $rule)), $form_state);
     }
   }
 }
diff --git a/includes/omega.drush.inc b/includes/omega.drush.inc
index 2a5182a..b5424a8 100644
--- a/includes/omega.drush.inc
+++ b/includes/omega.drush.inc
@@ -87,7 +87,7 @@ function omega_drush_help($section) {
  * Implements drush_hook_COMMAND_validate().
  */
 function drush_omega_subtheme_validate($name = NULL) {
-  // Rebuild the theme data so that we can safely check for the existance of
+  // Rebuild the theme data so that we can safely check for the existence of
   // themes by using the information provided by list_themes().
   system_rebuild_theme_data();
 
@@ -214,7 +214,7 @@ function drush_omega_subtheme($name = NULL) {
  * Implements drush_hook_COMMAND().
  */
 function drush_omega_wizard() {
-  // Rebuild the theme data so that we can safely check for the existance of
+  // Rebuild the theme data so that we can safely check for the existence of
   // themes by using the information provided by list_themes().
   system_rebuild_theme_data();
 
@@ -275,7 +275,7 @@ function drush_omega_wizard() {
  * Implements drush_hook_COMMAND_validate().
  */
 function drush_omega_export_validate($theme = NULL) {
-  // Rebuild the theme data so that we can safely check for the existance of
+  // Rebuild the theme data so that we can safely check for the existence of
   // themes by using the information provided by list_themes().
   system_rebuild_theme_data();
 
@@ -335,7 +335,7 @@ function drush_omega_export($theme = NULL) {
     if (drush_get_option('revert')) {
       // Revert the theme settings if the 'revert' option is set and they have
       // been exported successfully. In this case, we invoke the API function
-      // through the drush command to get the  print messages displazed.
+      // through the drush command to display the messages.
       drush_op('drush_omega_revert', $theme);
     }
 
@@ -351,7 +351,7 @@ function drush_omega_export($theme = NULL) {
  * Implements drush_hook_COMMAND_validate().
  */
 function drush_omega_revert_validate($theme) {
-  // Rebuild the theme data so that we can safely check for the existance of
+  // Rebuild the theme data so that we can safely check for the existence of
   // themes by using the information provided by list_themes().
   system_rebuild_theme_data();
 
@@ -536,7 +536,7 @@ function drush_omega_destination_choice($message) {
 
 
 /**
- * Helper function that continously prompts for a valid machine-readable name.
+ * Helper function that continuously prompts for a valid machine-readable name.
  *
  * @param $message
  *   The message that should be displayed.
@@ -672,7 +672,7 @@ function drush_omega_compose_info_file($array, $prefix = FALSE) {
  *   - 'starterkit': An array describing the starterkit.
  *   - 'default': (optional) Whether the subtheme should be enabled and set as
  *     the default theme after it has been created.
- *   - 'enable': (ptional) Whether the subtheme should be enabled after it has
+ *   - 'enable': (optional) Whether the subtheme should be enabled after it has
  *     been created.
  *
  * @return bool
diff --git a/includes/omega.inc b/includes/omega.inc
index 66c6a6f..e248be8 100644
--- a/includes/omega.inc
+++ b/includes/omega.inc
@@ -56,7 +56,7 @@ function omega_theme_get_setting($setting_name, $default = NULL, $theme = NULL)
     }
   }
 
-  // Use the default value if the settingdoes not exist.
+  // Use the default value if the setting does not exist.
   return $default;
 }
 
@@ -571,7 +571,7 @@ function omega_theme_libraries_info($theme = NULL) {
 }
 
 /**
- * Helper function for discovering layouts, extensions or other pluggins of any
+ * Helper function for discovering layouts, extensions or other plugins of any
  * sort in the theme trail.
  *
  * @param $type
@@ -617,7 +617,7 @@ function omega_discovery($type, $theme = NULL) {
       $ignore = isset($paths[$key]) ? $paths[$key] : array();
       $path = drupal_get_path('theme', $key);
 
-      // Support files without '.inc' extension for backwards compatibilty.
+      // Support files without '.inc' extension for backwards compatibility.
       foreach (file_scan_directory($path, '/\.' . $type . '(\.inc)?$/', array('key' => 'name')) as $name => $file) {
         // Ignore sub-theme templates for the current theme.
         if (strpos($file->uri, str_replace($ignore, '', $file->uri)) !== 0) {
@@ -648,7 +648,7 @@ function omega_discovery($type, $theme = NULL) {
  * Checks whether a version is compatible with a given dependency.
  *
  * This is a wrapper for drupal_check_incompatibility() which strips the core
- * version and any potential development version suffix fron the given string.
+ * version and any potential development version suffix from the given string.
  *
  * @param $dependency
  *   The parsed dependency structure from drupal_parse_dependency().
diff --git a/layouts/epiqo/js/epiqo.layout.js b/layouts/epiqo/js/epiqo.layout.js
index beae600..251f5ce 100644
--- a/layouts/epiqo/js/epiqo.layout.js
+++ b/layouts/epiqo/js/epiqo.layout.js
@@ -68,7 +68,7 @@ Drupal.behaviors.epiqoMobileSidebar = {
         }
       });
 
-      // Hide the sidebar when the area outside of it is clicked.http://drupaljobs.local.dev
+      // Hide the sidebar when the area outside of it is clicked.
       $('#main').click(function (e) {
         if ($('body').hasClass('show-sidebar') && $(e.srcElement).attr('id') != 'sidebar-first-container' && !$(e.srcElement).parents('#sidebar-first-container').length) {
           // Check if the clicked element is the sidebar or a child element of
diff --git a/layouts/epiqo/sass/partials/_variables.scss b/layouts/epiqo/sass/partials/_variables.scss
index 5cebc2d..7e37235 100644
--- a/layouts/epiqo/sass/partials/_variables.scss
+++ b/layouts/epiqo/sass/partials/_variables.scss
@@ -20,7 +20,7 @@ $grid-padding: 10px;
 $column-width: (100% - (($total-columns - 1) * $gutter-width)) / $total-columns;
 $grid-max-width: 1200px;
 
-// Miscelanoues variables.
+// Miscellaneous variables.
 $sidebar-collapsed-width: 10px;
 $sidebar-visible-gutter: 40px;
 $sidebar-toggle-width: $sidebar-visible-gutter - 10px;
diff --git a/layouts/epiqo/sass/partials/layout/_base.scss b/layouts/epiqo/sass/partials/layout/_base.scss
index 80e66c0..ee557d4 100644
--- a/layouts/epiqo/sass/partials/layout/_base.scss
+++ b/layouts/epiqo/sass/partials/layout/_base.scss
@@ -14,7 +14,7 @@ body {
 }
 
 // Implements the major building blocks as grid containers. By setting the
-// max-width we make sure that the website doesn't scale infinitly.
+// max-width we make sure that the website doesn't scale infinitely.
 .main, .topbar, .region-navigation, .footer-container .region, .region-search, .region-banner {
   @include grid-container;
 }
diff --git a/preprocess/user_profile_category.inc b/preprocess/user_profile_category.inc
index d2adf63..57e3fe4 100644
--- a/preprocess/user_profile_category.inc
+++ b/preprocess/user_profile_category.inc
@@ -3,7 +3,7 @@
 /**
  * Implements hook_preprocess_user_profile_category().
  *
- * Backports the following changes to made Drupal 8:
+ * Backports the following changes made to Drupal 8:
  * - #1190218: Convert user-profile-category.tpl.php to HTML5.
  */
 function omega_preprocess_user_profile_category(&$variables) {
diff --git a/template.php b/template.php
index 7454bef..b650585 100644
--- a/template.php
+++ b/template.php
@@ -255,7 +255,7 @@ function omega_theme() {
  *
  * Allows subthemes to split preprocess / process / theme code across separate
  * files to keep the main template.php file clean. This is really fast because
- * it uses the theme registry to cache the pathes to the files that it finds.
+ * it uses the theme registry to cache the paths to the files that it finds.
  */
 function omega_theme_registry_alter(&$registry) {
   foreach ($registry as $hook => $item) {
