summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJennifer Hodgdon <yahgrp@poplarware.com>2014-04-02 12:27:05 -0700
committerJennifer Hodgdon <yahgrp@poplarware.com>2014-04-02 12:27:05 -0700
commitf2e4e1024888c85383b411ca47aa070205070820 (patch)
tree34653518e1b4e84050f96f7831eb9e811df43226
parent440ebcb16099c140913f12e79cda5e1b0f842f52 (diff)
downloadbrdo-f2e4e1024888c85383b411ca47aa070205070820.tar.gz
brdo-f2e4e1024888c85383b411ca47aa070205070820.tar.bz2
Issue #2051519 by GoddamnNoise: Fix errors in registry.inc docs
-rw-r--r--includes/registry.inc9
1 files changed, 6 insertions, 3 deletions
diff --git a/includes/registry.inc b/includes/registry.inc
index f6c81eb1a..5fc767487 100644
--- a/includes/registry.inc
+++ b/includes/registry.inc
@@ -10,7 +10,7 @@
* @{
* The code registry engine.
*
- * Drupal maintains an internal registry of all functions or classes in the
+ * Drupal maintains an internal registry of all interfaces or classes in the
* system, allowing it to lazy-load code files as needed (reducing the amount
* of code that must be parsed on each request).
*/
@@ -120,7 +120,10 @@ function registry_get_parsed_files() {
}
/**
- * Parse all files that have changed since the registry was last built, and save their function and class listings.
+ * Parse all changed files and save their interface and class listings.
+ *
+ * Parse all files that have changed since the registry was last built, and save
+ * their interface and class listings.
*
* @param $files
* The list of files to check and parse.
@@ -149,7 +152,7 @@ function _registry_parse_files($files) {
}
/**
- * Parse a file and save its function and class listings.
+ * Parse a file and save its interface and class listings.
*
* @param $filename
* Name of the file we are going to parse.