summaryrefslogtreecommitdiff
path: root/includes
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 /includes
parent00361a2c780209775cae007ee11a4ce60b525136 (diff)
downloadbrdo-8cdf750e0e431979dcea0009eb743959381c35d0.tar.gz
brdo-8cdf750e0e431979dcea0009eb743959381c35d0.tar.bz2
- Patch #1066118 by Barrett: hook_field_widget_form() has punctuation error.
Diffstat (limited to 'includes')
-rw-r--r--includes/bootstrap.inc2
-rw-r--r--includes/common.inc10
-rw-r--r--includes/graph.inc2
-rw-r--r--includes/menu.inc2
-rw-r--r--includes/module.inc2
-rw-r--r--includes/theme.inc4
6 files changed, 11 insertions, 11 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index fe1741d57..8fa983d6a 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -1419,7 +1419,7 @@ function request_uri() {
* The exception that is going to be logged.
* @param $message
* The message to store in the log. If empty, a text that contains all useful
- * information about the passed in exception is used.
+ * information about the passed-in exception is used.
* @param $variables
* Array of variables to replace in the message on display. Defaults to the
* return value of drupal_decode_exception().
diff --git a/includes/common.inc b/includes/common.inc
index 814ca549a..3eb76b48b 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -1973,7 +1973,7 @@ function _format_date_callback(array $matches = NULL, $new_langcode = NULL) {
/**
* Format a username.
*
- * By default, the passed in object's 'name' property is used if it exists, or
+ * By default, the passed-in object's 'name' property is used if it exists, or
* else, the site-defined value for the 'anonymous' variable. However, a module
* may override this by implementing hook_username_alter(&$name, $account).
*
@@ -5228,7 +5228,7 @@ function drupal_set_page_content($content = NULL) {
* browsers, '#browsers' can be set to array('IE' => 'gte IE 8').
*
* @return
- * The passed in element with markup for conditional comments potentially
+ * The passed-in element with markup for conditional comments potentially
* added to '#prefix' and '#suffix'.
*/
function drupal_pre_render_conditional_comments($elements) {
@@ -5290,7 +5290,7 @@ function drupal_pre_render_conditional_comments($elements) {
* - #options: (optional) An array of options to pass to l().
*
* @return
- * The passed in elements containing a rendered link in '#markup'.
+ * The passed-in elements containing a rendered link in '#markup'.
*/
function drupal_pre_render_link($element) {
// By default, link options to pass to l() are normally set in #options.
@@ -5437,7 +5437,7 @@ function drupal_pre_render_links($element) {
* A structured array using the #markup key.
*
* @return
- * The passed in elements, but #markup appended to #children.
+ * The passed-in elements, but #markup appended to #children.
*/
function drupal_pre_render_markup($elements) {
$elements['#children'] = $elements['#markup'];
@@ -5901,7 +5901,7 @@ function drupal_render_collect_attached($elements, $return = FALSE) {
*
* @return
* A renderable array with the following keys and values:
- * - #query: The passed in $query.
+ * - #query: The passed-in $query.
* - #pre_render: $function with a _pre_render suffix.
* - #cache: An associative array prepared for drupal_render_cache_set().
*/
diff --git a/includes/graph.inc b/includes/graph.inc
index 339c9be86..8b89b7306 100644
--- a/includes/graph.inc
+++ b/includes/graph.inc
@@ -32,7 +32,7 @@
* @endcode
*
* @return
- * The passed in $graph with more secondary keys filled in:
+ * The passed-in $graph with more secondary keys filled in:
* - 'paths': Contains a list of vertices than can be reached on a path from
* this vertex.
* - 'reverse_paths': Contains a list of vertices that has a path from them
diff --git a/includes/menu.inc b/includes/menu.inc
index ce2eceab7..4757c77c6 100644
--- a/includes/menu.inc
+++ b/includes/menu.inc
@@ -2066,7 +2066,7 @@ function menu_local_tasks($level = 0) {
* node or array('system', 'navigation') for a certain block.
*
* @return
- * A list of menu router items that are local tasks for the passed in path.
+ * A list of menu router items that are local tasks for the passed-in path.
*
* @see contextual_links_preprocess()
*/
diff --git a/includes/module.inc b/includes/module.inc
index ae772ffda..08749f33c 100644
--- a/includes/module.inc
+++ b/includes/module.inc
@@ -856,7 +856,7 @@ function drupal_required_modules() {
/**
* Hands off alterable variables to type-specific *_alter implementations.
*
- * This dispatch function hands off the passed in variables to type-specific
+ * This dispatch function hands off the passed-in variables to type-specific
* hook_TYPE_alter() implementations in modules. It ensures a consistent
* interface for all altering operations.
*
diff --git a/includes/theme.inc b/includes/theme.inc
index 81165b36a..98119dfc3 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -319,8 +319,8 @@ function drupal_theme_rebuild() {
* The theme registry that will eventually be cached; It is an associative
* array keyed by theme hooks, whose values are associative arrays describing
* the hook:
- * - 'type': The passed in $type.
- * - 'theme path': The passed in $path.
+ * - 'type': The passed-in $type.
+ * - 'theme path': The passed-in $path.
* - 'function': The name of the function generating output for this theme
* hook. Either defined explicitly in hook_theme() or, if neither 'function'
* nor 'template' is defined, then the default theme function name is used.