diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-09-20 21:40:54 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-09-20 21:40:54 +0200 |
commit | 9116303cfc5259f05ec348809bfbc8757d4657cb (patch) | |
tree | 4138afc21e3df21295aef6d660b29895b96f2ade /lib/public/iconfig.php | |
parent | e92abfd4d8dfb9dbb42ccfc0c23193b1ddde3bbf (diff) | |
download | nextcloud-server-9116303cfc5259f05ec348809bfbc8757d4657cb.tar.gz nextcloud-server-9116303cfc5259f05ec348809bfbc8757d4657cb.zip |
fixing typos
Diffstat (limited to 'lib/public/iconfig.php')
-rw-r--r-- | lib/public/iconfig.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/public/iconfig.php b/lib/public/iconfig.php index 0c150ec351a..dab4590969b 100644 --- a/lib/public/iconfig.php +++ b/lib/public/iconfig.php @@ -12,7 +12,7 @@ namespace OCP; */ interface IConfig { /** - * Sets a new systemwide value + * Sets a new system wide value * @param string $key the key of the value, under which will be saved * @param string $value the value that should be stored * @todo need a use case for this @@ -20,7 +20,7 @@ interface IConfig { // public function setSystemValue($key, $value); /** - * Looks up a systemwide defined value + * Looks up a system wide defined value * @param string $key the key of the value, under which it was saved * @return string the saved value */ @@ -28,14 +28,14 @@ interface IConfig { /** - * Writes a new appwide value + * Writes a new app wide value * @param string $key the key of the value, under which will be saved * @param string $value the value that should be stored */ public function setAppValue($key, $value, $appName=null); /** - * Looks up an appwide defined value + * Looks up an app wide defined value * @param string $key the key of the value, under which it was saved * @return string the saved value */ |