diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-03-31 21:18:08 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-03-31 21:18:08 +0000 |
commit | 7bdcba172030b6c4aedf3e00514af1a857a04593 (patch) | |
tree | 752dcfa0080db649804125648993a7fa3174e50a /includes | |
parent | be14203534c5f09d0c70c2bf59b81b80f2a90b32 (diff) | |
download | brdo-7bdcba172030b6c4aedf3e00514af1a857a04593.tar.gz brdo-7bdcba172030b6c4aedf3e00514af1a857a04593.tar.bz2 |
- Patch #19739 by Uwe: corrected many typo's in the documentation and code comments
Diffstat (limited to 'includes')
-rw-r--r-- | includes/bootstrap.inc | 2 | ||||
-rw-r--r-- | includes/file.inc | 2 | ||||
-rw-r--r-- | includes/locale.inc | 2 | ||||
-rw-r--r-- | includes/theme.inc | 4 | ||||
-rw-r--r-- | includes/xmlrpc.inc | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index 3ec573846..75972dc1f 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -23,7 +23,7 @@ define('WATCHDOG_ERROR', 2); * remaining will ignored. If no configuration file is found, * return a default value '$confdir/default'. * - * Example for a ficticious site installed at + * Example for a fictitious site installed at * http://www.drupal.org/mysite/test/ the 'settings.php' is * searched in the following directories: * diff --git a/includes/file.inc b/includes/file.inc index 18ce0f9d9..c074b632a 100644 --- a/includes/file.inc +++ b/includes/file.inc @@ -491,7 +491,7 @@ function file_download() { * @param $min_depth * Minimum depth of directories to return files from. * @param $depth - * Current depth of recursion. This parameter is only used interally and should not be passed. + * Current depth of recursion. This parameter is only used internally and should not be passed. * * @return * An associative array (keyed on the provided key) of objects with diff --git a/includes/locale.inc b/includes/locale.inc index 77bae2b81..d45ffedf0 100644 --- a/includes/locale.inc +++ b/includes/locale.inc @@ -1006,7 +1006,7 @@ function _locale_string_seek_query() { * Perform a string search and display results in a table */ function _locale_string_seek() { - // We have at least one criterium to match + // We have at least one criterion to match if ($query = _locale_string_seek_query()) { $join = "SELECT s.source, s.location, s.lid, t.translation, t.locale FROM {locales_source} s INNER JOIN {locales_target} t ON s.lid = t.lid "; diff --git a/includes/theme.inc b/includes/theme.inc index 789841152..7e86c9273 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -348,7 +348,7 @@ function theme_get_styles() { * * The theme system is described and defined in theme.inc. */ - + /** * Format a dynamic text string for emphasised display in a placeholder. * @@ -876,7 +876,7 @@ function theme_blocks($region) { * his/her mind. * * You should use $_POST['edit'][$name] (where $name is usually 'confirm') to - * check if the confirmation was succesful. + * check if the confirmation was successful. * * @param $question * The question to ask the user (e.g. "Are you sure you want to delete the diff --git a/includes/xmlrpc.inc b/includes/xmlrpc.inc index b55ce425b..dce2ddcf2 100644 --- a/includes/xmlrpc.inc +++ b/includes/xmlrpc.inc @@ -911,7 +911,7 @@ class xmlrpcval { list($a,$b)=each($this->me); // contributed by I Sofer, 2001-03-24 // add support for nested arrays to scalarval - // i've created a new method here, so as to + // I've created a new method here, so as to // preserve back compatibility if (is_array($b)) { |