comment typos

This commit is contained in:
Petr Skoda 2010-05-22 20:16:12 +00:00
parent c8aea813a9
commit 71c03ac138
2 changed files with 8 additions and 8 deletions

View File

@ -517,7 +517,7 @@ class theme_config {
/**
* Returns output renderer prefixes, these are used when looking
* for the overriden renderers in themes.
* for the overridden renderers in themes.
* @return array
*/
public function renderer_prefixes() {
@ -751,7 +751,7 @@ class theme_config {
* Can be used recursively on the results of {@see css_files}
*
* @param array|string $file An array of file paths or a single file path
* @param array $keys An array of previous array keys [recusive addition]
* @param array $keys An array of previous array keys [recursive addition]
* @return The converted array or the contents of the single file ($file type)
*/
protected function css_files_get_contents($file, array $keys) {
@ -769,7 +769,7 @@ class theme_config {
/**
* Get the javascript URL of this theme
* @param bool $inhead true means haed url, false means footer
* @param bool $inhead true means head url, false means footer
* @return moodle_url
*/
public function javascript_url($inhead) {
@ -1205,7 +1205,7 @@ class xhtml_container_stack {
protected $log = array();
/**
* Store whether we are developer debug mode. We need this in several places
* including in the destructor where we may no thave access to $CFG.
* including in the destructor where we may not have access to $CFG.
* @var boolean
*/
protected $isdebugging;

View File

@ -158,7 +158,7 @@ class plugin_renderer_base extends renderer_base {
/**
* Returns rendered widget.
* @param renderable $widget intence with renderable interface
* @param renderable $widget instance with renderable interface
* @return string
*/
public function render(renderable $widget) {
@ -1331,7 +1331,7 @@ class core_renderer extends renderer_base {
}
$formstart = null;
//if the item doesnt belong to the current user, the user has permission to rate
//if the item doesn't belong to the current user, the user has permission to rate
//and we're within the assessable period
if ($rating->itemuserid!=$USER->id
&& $rating->settings->permissions->rate
@ -2027,7 +2027,7 @@ NONJS;
/**
* Prints a single paging bar to provide access to other pages (usually in a search)
*
* @param int $totalcount Thetotal number of entries available to be paged through
* @param int $totalcount The total number of entries available to be paged through
* @param int $page The page you are currently viewing
* @param int $perpage The number of entries that should be shown per page
* @param string|moodle_url $baseurl url of the current page, the $pagevar parameter is added
@ -2343,7 +2343,7 @@ NONJS;
/**
* Returns the custom menu if one has been set
*
* A custom menu can be configured by browing to
* A custom menu can be configured by browsing to
* Settings: Administration > Appearance > Themes > Theme settings
* and then configuring the custommenu config setting as described.
*