diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index 728e4ec..319f172 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -380,11 +380,11 @@ abstract class DrupalCacheArray implements ArrayAccess { * without necessarily writing back to the persistent cache at the end. * * @param $offset - * The array offset that was request. + * The array offset that was requested. * @param $persist * Optional boolean to specify whether the offset should be persisted or * not, defaults to TRUE. When called with $persist = FALSE the offset will - * be unflagged so that it will not written at the end of the request. + * be unflagged so that it will not be written at the end of the request. */ protected function persist($offset, $persist = TRUE) { $this->keysToPersist[$offset] = $persist; @@ -791,7 +791,7 @@ function drupal_settings_initialize() { * * This function plays a key role in allowing Drupal's resources (modules * and themes) to be located in different places depending on a site's - * configuration. For example, a module 'foo' may legally be be located + * configuration. For example, a module 'foo' may legally be located * in any of these three places: * * modules/foo/foo.module @@ -802,7 +802,7 @@ function drupal_settings_initialize() { * the above, depending on where the module is located. * * @param $type - * The type of the item (i.e. theme, theme_engine, module, profile). + * The type of the item (e.g. theme, theme_engine, module, profile). * @param $name * The name of the item for which the filename is requested. * @param $filename