diff options
author | Dries Buytaert <dries@buytaert.net> | 2011-04-12 22:54:25 +0200 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2011-04-12 22:54:25 +0200 |
commit | 8cdf750e0e431979dcea0009eb743959381c35d0 (patch) | |
tree | 041f0faf94f863c9c4e069a7fea6f1d7b1f6f06d /modules/node | |
parent | 00361a2c780209775cae007ee11a4ce60b525136 (diff) | |
download | brdo-8cdf750e0e431979dcea0009eb743959381c35d0.tar.gz brdo-8cdf750e0e431979dcea0009eb743959381c35d0.tar.bz2 |
- Patch #1066118 by Barrett: hook_field_widget_form() has punctuation error.
Diffstat (limited to 'modules/node')
-rw-r--r-- | modules/node/node.module | 4 |
1 files changed, 2 insertions, 2 deletions
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. |