From 80448f69b7ca0f68d53cc721b05e9a7c4bb4d1e3 Mon Sep 17 00:00:00 2001
From: Greg Dunlap <gdd@heyrocker.com>
Date: Tue, 28 Feb 2012 23:14:22 -0800
Subject: [PATCH] Also fixed those comments in hook_schema, fixed a typo

---
 core/modules/system/system.install | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/core/modules/system/system.install b/core/modules/system/system.install
index 1f4d3df5dfd6..45e369f0aaac 100644
--- a/core/modules/system/system.install
+++ b/core/modules/system/system.install
@@ -699,14 +699,14 @@ function system_schema() {
     'description' => 'Default active store for the configuration system.',
     'fields' => array(
       'name' => array(
-        'description' => 'The identifier for the configuration entry, such as module.example (the name of the file, minus .json.php).',
+        'description' => 'The identifier for the configuration entry, such as module.example (the name of the file, minus the file extension).',
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
         'default' => '',
       ),
       'data' => array(
-        'description' => 'The raw JSON data for this configuration entry.',
+        'description' => 'The raw data for this configuration entry.',
         'type' => 'blob',
         'not null' => TRUE,
         'size' => 'big',
@@ -1699,7 +1699,7 @@ function system_update_8003() {
     'description' => 'Default active store for the configuration system.',
     'fields' => array(
       'name' => array(
-        'description' => 'The identifier for the configuration entry, such as module.example (the name of the file, minus the file extendion.).',
+        'description' => 'The identifier for the configuration entry, such as module.example (the name of the file, minus the file extension).',
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
-- 
GitLab