summaryrefslogtreecommitdiff
path: root/modules/node/tests
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-05-27 18:34:03 +0000
committerDries Buytaert <dries@buytaert.net>2009-05-27 18:34:03 +0000
commit0f4060f377a6ccea57a183b3c3e4801c450f5476 (patch)
tree07a7bd87373613f3e884c8f56bfb9911eda38511 /modules/node/tests
parent5bdcc4ada232bf92e3d529962d9f7aa2536605cc (diff)
downloadbrdo-0f4060f377a6ccea57a183b3c3e4801c450f5476.tar.gz
brdo-0f4060f377a6ccea57a183b3c3e4801c450f5476.tar.bz2
- Patch #472642 by stella, agentrickard: remove 'implementation of' nominalizations from Docblocks.
Diffstat (limited to 'modules/node/tests')
-rw-r--r--modules/node/tests/node_test.module10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/node/tests/node_test.module b/modules/node/tests/node_test.module
index 27a303e06..fd0fca707 100644
--- a/modules/node/tests/node_test.module
+++ b/modules/node/tests/node_test.module
@@ -8,7 +8,7 @@
*/
/**
- * Implementation of hook_node_view().
+ * Implement hook_node_view().
*/
function node_test_node_view($node, $teaser) {
if ($node->build_mode == NODE_BUILD_RSS) {
@@ -35,7 +35,7 @@ function node_test_node_view($node, $teaser) {
}
/**
- * Implementation of hook_node_grants().
+ * Implement hook_node_grants().
*/
function node_test_node_grants($account, $op) {
// Give everyone full grants so we don't break other node tests.
@@ -49,7 +49,7 @@ function node_test_node_grants($account, $op) {
}
/**
- * Implementation of hook_node_access_records().
+ * Implement hook_node_access_records().
*/
function node_test_node_access_records($node) {
$grants = array();
@@ -79,7 +79,7 @@ function node_test_node_access_records($node) {
}
/**
- * Implementation of hook_node_access_records_alter().
+ * Implement hook_node_access_records_alter().
*/
function node_test_node_access_records_alter(&$grants, $node) {
if (!empty($grants)) {
@@ -94,7 +94,7 @@ function node_test_node_access_records_alter(&$grants, $node) {
}
/**
- * Implementation of hook_node_grants_alter().
+ * Implement hook_node_grants_alter().
*/
function node_test_node_grants_alter(&$grants, $account, $op) {
// Return an empty array of grants to prove that we can alter by reference.