summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2011-04-12 22:54:25 +0200
committerDries Buytaert <dries@buytaert.net>2011-04-12 22:54:25 +0200
commit8cdf750e0e431979dcea0009eb743959381c35d0 (patch)
tree041f0faf94f863c9c4e069a7fea6f1d7b1f6f06d /modules
parent00361a2c780209775cae007ee11a4ce60b525136 (diff)
downloadbrdo-8cdf750e0e431979dcea0009eb743959381c35d0.tar.gz
brdo-8cdf750e0e431979dcea0009eb743959381c35d0.tar.bz2
- Patch #1066118 by Barrett: hook_field_widget_form() has punctuation error.
Diffstat (limited to 'modules')
-rw-r--r--modules/field/field.api.php2
-rw-r--r--modules/field/field.attach.inc2
-rw-r--r--modules/filter/filter.pages.inc2
-rw-r--r--modules/node/node.module4
-rw-r--r--modules/simpletest/drupal_web_test_case.php2
-rw-r--r--modules/system/system.api.php2
-rw-r--r--modules/taxonomy/taxonomy.module2
7 files changed, 8 insertions, 8 deletions
diff --git a/modules/field/field.api.php b/modules/field/field.api.php
index f905fa060..e21c28106 100644
--- a/modules/field/field.api.php
+++ b/modules/field/field.api.php
@@ -757,7 +757,7 @@ function hook_field_widget_info_alter(&$info) {
/**
* Return the form for a single field widget.
*
- * Field widget form elements should be based on the passed in $element, which
+ * Field widget form elements should be based on the passed-in $element, which
* contains the base form element properties derived from the field
* configuration.
*
diff --git a/modules/field/field.attach.inc b/modules/field/field.attach.inc
index 2e5fed194..82aabc054 100644
--- a/modules/field/field.attach.inc
+++ b/modules/field/field.attach.inc
@@ -877,7 +877,7 @@ function field_attach_presave($entity_type, $entity) {
/**
* Save field data for a new entity.
*
- * The passed in entity must already contain its id and (if applicable)
+ * The passed-in entity must already contain its id and (if applicable)
* revision id attributes.
* Default values (if any) will be saved for fields not present in the
* $entity.
diff --git a/modules/filter/filter.pages.inc b/modules/filter/filter.pages.inc
index 0fa87ad73..dbbbe4c5a 100644
--- a/modules/filter/filter.pages.inc
+++ b/modules/filter/filter.pages.inc
@@ -39,7 +39,7 @@ function filter_tips_long() {
* ),
* );
* @endcode
- * - long: (optional) Whether the passed in filter tips contain extended
+ * - long: (optional) Whether the passed-in filter tips contain extended
* explanations, i.e. intended to be output on the path 'filter/tips'
* (TRUE), or are in a short format, i.e. suitable to be displayed below a
* form element. Defaults to FALSE.
diff --git a/modules/node/node.module b/modules/node/node.module
index c052f4b63..a59a5b1e4 100644
--- a/modules/node/node.module
+++ b/modules/node/node.module
@@ -364,7 +364,7 @@ function node_mark($nid, $timestamp) {
* Either a string or object, containing the node type information.
*
* @return
- * Node type of the passed in data.
+ * Node type of the passed-in data.
*/
function _node_extract_type($node) {
return is_object($node) ? $node->type : $node;
@@ -1413,7 +1413,7 @@ function node_show($node, $message = FALSE) {
}
/**
- * Returns whether the current page is the full page view of the passed in node.
+ * Returns whether the current page is the full page view of the passed-in node.
*
* @param $node
* A node object.
diff --git a/modules/simpletest/drupal_web_test_case.php b/modules/simpletest/drupal_web_test_case.php
index a0cd114e9..b60c6829c 100644
--- a/modules/simpletest/drupal_web_test_case.php
+++ b/modules/simpletest/drupal_web_test_case.php
@@ -1151,7 +1151,7 @@ class DrupalWebTestCase extends DrupalTestCase {
* If a user is already logged in, then the current user is logged out before
* logging in the specified user.
*
- * Please note that neither the global $user nor the passed in user object is
+ * Please note that neither the global $user nor the passed-in user object is
* populated with data of the logged in user. If you need full access to the
* user object after logging in, it must be updated manually. If you also need
* access to the plain-text password of the user (set by drupalCreateUser()),
diff --git a/modules/system/system.api.php b/modules/system/system.api.php
index 5ee776ae5..1c7178639 100644
--- a/modules/system/system.api.php
+++ b/modules/system/system.api.php
@@ -873,7 +873,7 @@ function hook_page_build(&$page) {
*
* This hook is invoked by menu_get_item() and allows for run-time alteration of router
* information (page_callback, title, and so on) before it is translated and checked for
- * access. The passed in $router_item is statically cached for the current request, so this
+ * access. The passed-in $router_item is statically cached for the current request, so this
* hook is only invoked once for any router item that is retrieved via menu_get_item().
*
* Usually, modules will only want to inspect the router item and conditionally
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index f170430ca..d14a169c8 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/taxonomy.module
@@ -746,7 +746,7 @@ function template_preprocess_taxonomy_term(&$variables) {
}
/**
- * Returns whether the current page is the page of the passed in term.
+ * Returns whether the current page is the page of the passed-in term.
*
* @param $term
* A term object.