summaryrefslogtreecommitdiffstats
path: root/lib/app.php
diff options
context:
space:
mode:
authorkondou <kondou@ts.unde.re>2013-07-16 05:56:52 +0200
committerkondou <kondou@ts.unde.re>2013-07-16 06:01:26 +0200
commitd9c697534d736e7165114a2f250f9ed9527dcf26 (patch)
tree9bf2aa98a88dbacb7913fddac0a49e31a23db6d8 /lib/app.php
parentf2639d62692b9cd25adff137fa65954fc3b5a794 (diff)
downloadnextcloud-server-d9c697534d736e7165114a2f250f9ed9527dcf26.tar.gz
nextcloud-server-d9c697534d736e7165114a2f250f9ed9527dcf26.zip
Fix some typos
Diffstat (limited to 'lib/app.php')
-rw-r--r--lib/app.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/app.php b/lib/app.php
index f9b1c5ca7b5..baacf508d8e 100644
--- a/lib/app.php
+++ b/lib/app.php
@@ -424,7 +424,7 @@ class OC_App{
return $navigation;
}
- /// This is private as well. It simply works, so don't ask for more details
+ // This is private as well. It simply works, so don't ask for more details
private static function proceedNavigation( $list ) {
foreach( $list as &$naventry ) {
if( $naventry['id'] == self::$activeapp ) {
@@ -473,7 +473,7 @@ class OC_App{
}
/**
* Get the directory for the given app.
- * If the app is defined in multiple directory, the first one is taken. (false if not found)
+ * If the app is defined in multiple directories, the first one is taken. (false if not found)
*/
public static function getAppPath($appid) {
if( ($dir = self::findAppInDirectories($appid)) != false) {
@@ -484,7 +484,7 @@ class OC_App{
/**
* Get the path for the given app on the access
- * If the app is defined in multiple directory, the first one is taken. (false if not found)
+ * If the app is defined in multiple directories, the first one is taken. (false if not found)
*/
public static function getAppWebPath($appid) {
if( ($dir = self::findAppInDirectories($appid)) != false) {
@@ -818,7 +818,7 @@ class OC_App{
}
/**
- * check if the app need updating and update when needed
+ * check if the app needs updating and update when needed
*/
public static function checkUpgrade($app) {
if (in_array($app, self::$checkedApps)) {