From 54cef90cb444751aa79476408e861d995c8d307e Mon Sep 17 00:00:00 2001
From: Jesse Hofmann-Smith <jesse@opensourcery.com>
Date: Wed, 23 May 2012 18:59:22 -0700
Subject: [PATCH] add periods at the end of comments to correct for drupalcs
 coding standards

---
 includes/features.field.inc  |    2 +-
 includes/features.filter.inc |    2 +-
 includes/features.image.inc  |    2 +-
 includes/features.locale.inc |    2 +-
 includes/features.menu.inc   |    2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/includes/features.field.inc b/includes/features.field.inc
index 96b22b4..aae7559 100644
--- a/includes/features.field.inc
+++ b/includes/features.field.inc
@@ -107,7 +107,7 @@ function field_features_export_render($module, $data, $export = NULL) {
       _field_features_export_sort($field);
       $field_export = features_var_export($field, '  ');
       $field_identifier = features_var_export($identifier);
-      $code[] = "  // Exported field: {$field_identifier}";
+      $code[] = "  // Exported field: {$field_identifier}.";
       $code[] = "  \$fields[{$field_identifier}] = {$field_export};";
       $code[] = "";
 
diff --git a/includes/features.filter.inc b/includes/features.filter.inc
index 5ec18e1..a52927d 100644
--- a/includes/features.filter.inc
+++ b/includes/features.filter.inc
@@ -65,7 +65,7 @@ function filter_features_export_render($module, $data, $export = NULL) {
     if ($format = features_filter_format_load($name)) {
       $format_export = features_var_export($format, '  ');
       $format_identifier = features_var_export($format->format);
-      $code[] = "  // Exported format: {$format->name}";
+      $code[] = "  // Exported format: {$format->name}.";
       $code[] = "  \$formats[{$format_identifier}] = {$format_export};";
       $code[] = "";
     }
diff --git a/includes/features.image.inc b/includes/features.image.inc
index 9eee8db..5674499 100644
--- a/includes/features.image.inc
+++ b/includes/features.image.inc
@@ -58,7 +58,7 @@ function image_features_export_render($module_name, $data, $export = NULL) {
       _image_features_style_sanitize($style);
       $style_export = features_var_export($style, '  ');
       $style_identifier = features_var_export($name);
-      $code[] = "  // Exported image style: {$name}";
+      $code[] = "  // Exported image style: {$name}.";
       $code[] = "  \$styles[{$style_identifier}] = {$style_export};";
       $code[] = "";
     }
diff --git a/includes/features.locale.inc b/includes/features.locale.inc
index 2eed027..6d56fe4 100644
--- a/includes/features.locale.inc
+++ b/includes/features.locale.inc
@@ -67,7 +67,7 @@ function language_features_export_render($module, $data, $export = NULL) {
 
       $lang_export = features_var_export($var, '  ');
       $lang_identifier = features_var_export($name);
-      $code[] = "  // Exported language: $name";
+      $code[] = "  // Exported language: $name.";
       $code[] = "  \$languages[{$lang_identifier}] = {$lang_export};";
     }
   }
diff --git a/includes/features.menu.inc b/includes/features.menu.inc
index 3060aa0..d890ef5 100644
--- a/includes/features.menu.inc
+++ b/includes/features.menu.inc
@@ -93,7 +93,7 @@ function menu_custom_features_export_render($module, $data) {
       ->fetchAssoc();
     if ($row) {
       $export = features_var_export($row, '  ');
-      $code[] = "  // Exported menu: {$menu_name}";
+      $code[] = "  // Exported menu: {$menu_name}.";
       $code[] = "  \$menus['{$menu_name}'] = {$export};";
       $translatables[] = $row['title'];
       $translatables[] = $row['description'];
-- 
1.7.5.4

