diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-07-02 14:41:37 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-07-02 14:41:37 +0000 |
commit | ee701b3336d04488122c13e142369e179a63be16 (patch) | |
tree | 158725be7c013a3c67d386facc89f34688d39096 /includes/database.inc | |
parent | 5e5a07f513ee793a8bbe5094895b4ebd5a1de8a2 (diff) | |
download | brdo-ee701b3336d04488122c13e142369e179a63be16.tar.gz brdo-ee701b3336d04488122c13e142369e179a63be16.tar.bz2 |
- Patch #155986 by Uwe: fixed typos.
Diffstat (limited to 'includes/database.inc')
-rw-r--r-- | includes/database.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/database.inc b/includes/database.inc index b4bda22b4..2b09d9c8e 100644 --- a/includes/database.inc +++ b/includes/database.inc @@ -307,7 +307,7 @@ function db_escape_table($string) { * more tables and their related keys and indexes. A schema is defined by * hook_schema(), which usually lives in a modulename.schema file. * - * By implenting hook_schema() and specifying the tables your module + * By implementing hook_schema() and specifying the tables your module * declares, you can easily create and drop these tables on all * supported database engines. You don't have to deal with the * different SQL dialects for table creation and alteration of the @@ -357,7 +357,7 @@ function db_escape_table($string) { * All parameters apart from 'type' are optional except that type * 'numeric' columns must specify 'precision' and 'scale'. * - * - 'primary key': An array of one or more key column specifers (see below) + * - 'primary key': An array of one or more key column specifiers (see below) * that form the primary key. * - 'unique key': An associative array of unique keys ('keyname' => * specification). Each specification is an array of one or more |