diff --git a/plugins/access/page_403.inc b/plugins/access/page_403.inc
index d47bf93..d52960c 100644
--- a/plugins/access/page_403.inc
+++ b/plugins/access/page_403.inc
@@ -1,26 +1,26 @@
 <?php
- 
+
 /**
  * @file
- * Plugin to provide access control based on HTTP responce code.
- */ 
+ * Plugin to provide access control based on HTTP response code.
+ */
 
 /**
  * Plugins are described by creating a $plugin array which will be used
  * by the system that includes this file.
- */ 
+ */
 $plugin = array(
   'title' => t('403 Forbidden'),
-  'description' => t('Is this the "403 Forbidden" responce code.'),
-  'callback' => 'access_403_ctools_access_check',
-  'settings form' => 'access_403_ctools_access_settings',
-  'summary' => 'access_403_ctools_access_summary',
+  'description' => t('Is this the "403 Forbidden" response code.'),
+  'callback' => 'ctools_page_403_ctools_access_check',
+  'settings form' => 'ctools_page_403_ctools_access_settings',
+  'summary' => 'ctools_page_403_ctools_access_summary',
 );
 
 /**
- * Settings form for the '403 Forbidden' access plugin
+ * Settings form for the '403 Forbidden' access plugin.
  */
-function access_403_ctools_access_settings($form, &$form_state, $conf) {
+function ctools_page_403_ctools_access_settings($form, &$form_state, $conf) {
   // No additional configuration necessary.
   return $form;
 }
@@ -28,18 +28,18 @@ function access_403_ctools_access_settings($form, &$form_state, $conf) {
 /**
  * Check for access.
  */
-function access_403_ctools_access_check($conf, $context) {
-  $responce_code = drupal_get_http_header('status');
-  if ($responce_code == '403 Forbidden') {
+function ctools_page_403_ctools_access_check($conf, $context) {
+  $response_code = drupal_get_http_header('status');
+  if ($response_code == '403 Forbidden') {
     return TRUE;
   }
-  
+
   return FALSE;
 }
- 
+
 /**
- * Provide a summary description based upon the checked responce code.
+ * Provide a summary description based upon the checked response code.
  */
-function access_403_ctools_access_summary($conf, $context) {
+function ctools_page_403_ctools_access_summary($conf, $context) {
   return t('The 403 Forbidden');
 }
diff --git a/plugins/access/page_404.inc b/plugins/access/page_404.inc
index 288b943..b117083 100644
--- a/plugins/access/page_404.inc
+++ b/plugins/access/page_404.inc
@@ -1,26 +1,26 @@
 <?php
- 
+
 /**
  * @file
- * Plugin to provide access control based on HTTP responce code.
- */ 
+ * Plugin to provide access control based on HTTP response code.
+ */
 
 /**
  * Plugins are described by creating a $plugin array which will be used
  * by the system that includes this file.
- */ 
+ */
 $plugin = array(
   'title' => t('404 Not Found'),
-  'description' => t('Is this the "404 Not Found" responce code.'),
-  'callback' => 'access_404_ctools_access_check',
-  'settings form' => 'access_404_ctools_access_settings',
-  'summary' => 'access_404_ctools_access_summary',
+  'description' => t('Is this the "404 Not Found" response code.'),
+  'callback' => 'ctools_page_404_ctools_access_check',
+  'settings form' => 'ctools_page_404_ctools_access_settings',
+  'summary' => 'ctools_page_404_ctools_access_summary',
 );
 
 /**
- * Settings form for the '404 Not Found' access plugin
+ * Settings form for the '404 Not Found' access plugin.
  */
-function access_404_ctools_access_settings($form, &$form_state, $conf) {
+function ctools_page_404_ctools_access_settings($form, &$form_state, $conf) {
   // No additional configuration necessary.
   return $form;
 }
@@ -28,18 +28,18 @@ function access_404_ctools_access_settings($form, &$form_state, $conf) {
 /**
  * Check for access.
  */
-function access_404_ctools_access_check($conf, $context) {
-  $responce_code = drupal_get_http_header('status');
-  if ($responce_code == '404 Not Found') {
+function ctools_page_404_ctools_access_check($conf, $context) {
+  $response_code = drupal_get_http_header('status');
+  if ($response_code == '404 Not Found') {
     return TRUE;
   }
-  
+
   return FALSE;
 }
- 
+
 /**
- * Provide a summary description based upon the checked responce code.
+ * Provide a summary description based upon the checked response code.
  */
-function access_404_ctools_access_summary($conf, $context) {
+function ctools_page_404_ctools_access_summary($conf, $context) {
   return t('The 404 Not Found');
 }
