summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-11-26 16:36:44 +0000
committerDries Buytaert <dries@buytaert.net>2007-11-26 16:36:44 +0000
commit9a96837b89a0f6b2b5b2c99063e5faeda53d88c6 (patch)
tree764bc2146802b2e35d5b54cf2afb4f428372186a /includes
parent22444f2fedf0fbe34423128ede822adc0f82e411 (diff)
downloadbrdo-9a96837b89a0f6b2b5b2c99063e5faeda53d88c6.tar.gz
brdo-9a96837b89a0f6b2b5b2c99063e5faeda53d88c6.tar.bz2
- Patch #163246 by keith smith, freso, O Govinda, catch, webchick et al: fixed minor spelling issues and fixed spacing issues.
Diffstat (limited to 'includes')
-rw-r--r--includes/common.inc4
-rw-r--r--includes/file.inc2
-rw-r--r--includes/form.inc4
-rw-r--r--includes/locale.inc2
-rw-r--r--includes/theme.inc6
5 files changed, 9 insertions, 9 deletions
diff --git a/includes/common.inc b/includes/common.inc
index b1c542207..e678ab281 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -1604,7 +1604,7 @@ function drupal_add_css($path = NULL, $type = 'module', $media = 'all', $preproc
unset($css[$media]['module'][$old_path]);
// If the current language is RTL and the CSS file had an RTL variant,
- // pull out the original. The theme must provide it's own RTL style.
+ // pull out the original. The theme must provide its own RTL style.
if (defined('LANGUAGE_RTL') && $language->direction == LANGUAGE_RTL) {
$rtl_old_path = str_replace('.css', '-rtl.css', $old_path);
if (isset($css[$media]['module'][$rtl_old_path])) {
@@ -1939,7 +1939,7 @@ function drupal_get_js($scope = 'header', $javascript = NULL) {
* needs to be arranged by an end-user. Draggable tables are very flexible and
* can manipulate the value of form elements placed within individual columns.
*
- * To setup a table to use drag and drop in place of weight select-lists or
+ * To set up a table to use drag and drop in place of weight select-lists or
* in place of a form that contains parent relationships, the form must be
* themed into a table. The table must have an id attribute set. If using
* theme_table(), the id may be set as such:
diff --git a/includes/file.inc b/includes/file.inc
index b1b488d76..40510783f 100644
--- a/includes/file.inc
+++ b/includes/file.inc
@@ -456,7 +456,7 @@ function file_space_used($uid = NULL) {
*
* The file will be added to the files table as a temporary file. Temporary files
* are periodically cleaned. To make the file permanent file call
- * file_set_status() to change it's status.
+ * file_set_status() to change its status.
*
* @param $source
* A string specifying the name of the upload field to save.
diff --git a/includes/form.inc b/includes/form.inc
index a374963fb..011137758 100644
--- a/includes/form.inc
+++ b/includes/form.inc
@@ -2269,8 +2269,8 @@ function form_clean_id($id = NULL, $flush = FALSE) {
* clean code independence, ensuring that several batches submitted by
* different parts of the code (core / contrib modules) can be processed
* correctly while not interfering or having to cope with each other. Each
- * batch set gets to specify his own UI messages, operates on it's own set
- * of operations and results, and triggers it's own 'finished' callback.
+ * batch set gets to specify his own UI messages, operates on its own set
+ * of operations and results, and triggers its own 'finished' callback.
* Batch sets are processed sequentially, with the progress bar starting
* fresh for every new set.
*/
diff --git a/includes/locale.inc b/includes/locale.inc
index 06b67e4f5..fd81a499a 100644
--- a/includes/locale.inc
+++ b/includes/locale.inc
@@ -488,7 +488,7 @@ function locale_translate_overview_screen() {
$groupsums[$group->textgroup] = $group->strings;
}
- // Setup overview table with default values, ensuring common order for values.
+ // Set up overview table with default values, ensuring common order for values.
$rows = array();
foreach ($languages as $langcode => $language) {
$rows[$langcode] = array('name' => ($langcode == 'en' ? t('English (built-in)') : t($language->name)));
diff --git a/includes/theme.inc b/includes/theme.inc
index d1e0b0d86..89825dba5 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -515,9 +515,9 @@ function list_theme_engines($refresh = FALSE) {
* provided so that the preprocessor is not locked into a specific theme.
* This makes it easy to share and transport code but theme authors must be
* careful to prevent fatal re-declaration errors when using sub-themes that
- * have their own preprocessor named exactly the same as it's base theme. In
+ * have their own preprocessor named exactly the same as its base theme. In
* the default theme engine (PHPTemplate), sub-themes will load their own
- * template.php file in addition to the one used for it's parent theme. This
+ * template.php file in addition to the one used for its parent theme. This
* increases the risk for these errors. A good practice is to use the engine
* name for the base theme and the theme name for the sub-themes to minimize
* this possibility.
@@ -1778,7 +1778,7 @@ function template_preprocess_page(&$variables) {
isset($variables[$region]) ? $variables[$region] .= $blocks : $variables[$region] = $blocks;
}
- // Setup layout variable.
+ // Set up layout variable.
$variables['layout'] = 'none';
if (!empty($variables['left'])) {
$variables['layout'] = 'left';