diff --git a/apps/files_sharing/ajax/shareinfo.php b/apps/files_sharing/ajax/shareinfo.php
index e531e84ebbc387f9b4020df2eaea4ace310b3655..e15e12fd287d02afbd35d9a26cd10ad97bd2e564 100644
--- a/apps/files_sharing/ajax/shareinfo.php
+++ b/apps/files_sharing/ajax/shareinfo.php
@@ -71,12 +71,12 @@ function getChildInfo($dir, $view) {
 	$children = $view->getDirectoryContent($dir->getPath());
 	$result = array();
 	foreach ($children as $child) {
-		$formated = \OCA\Files\Helper::formatFileInfo($child);
+		$formatted = \OCA\Files\Helper::formatFileInfo($child);
 		if ($child->getType() === 'dir') {
-			$formated['children'] = getChildInfo($child, $view);
+			$formatted['children'] = getChildInfo($child, $view);
 		}
-		$formated['mtime'] = $formated['mtime'] / 1000;
-		$result[] = $formated;
+		$formatted['mtime'] = $formatted['mtime'] / 1000;
+		$result[] = $formatted;
 	}
 	return $result;
 }
diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js
index 5bfc8e1d4a241293316b2309ffb9deab86deaf3a..07ec5f766a10a36ecb37a826554d8d3f51fc4007 100644
--- a/apps/files_sharing/js/share.js
+++ b/apps/files_sharing/js/share.js
@@ -38,7 +38,7 @@
 				var tr = oldCreateRow.apply(this, arguments);
 				var sharePermissions = fileData.permissions;
 				if (fileData.mountType && fileData.mountType === "external-root"){
-					// for external storages we cant use the permissions of the mountpoint
+					// for external storages we can't use the permissions of the mountpoint
 					// instead we show all permissions and only use the share permissions from the mountpoint to handle resharing
 					sharePermissions = sharePermissions | (OC.PERMISSION_ALL & ~OC.PERMISSION_SHARE);
 				}
diff --git a/apps/files_sharing/lib/external/manager.php b/apps/files_sharing/lib/external/manager.php
index 71d6788cb52bc28ed90e08a5d927672eee72770b..7dc9f66f1147521f55e8b1313d452fc97a22041b 100644
--- a/apps/files_sharing/lib/external/manager.php
+++ b/apps/files_sharing/lib/external/manager.php
@@ -384,7 +384,7 @@ class Manager {
 	}
 
 	/**
-	 * return a list of shares wich are accepted by the user
+	 * return a list of shares which are accepted by the user
 	 *
 	 * @return array list of accepted server-to-server shares
 	 */
diff --git a/apps/files_sharing/tests/cache.php b/apps/files_sharing/tests/cache.php
index c137ba0728d9fca7cd7d24a8e93de13efba8ffb7..fcc5a343a03e502188ddf061ca408fa5b1b822c5 100644
--- a/apps/files_sharing/tests/cache.php
+++ b/apps/files_sharing/tests/cache.php
@@ -193,7 +193,7 @@ class Test_Files_Sharing_Cache extends TestCase {
 					array('name' => 'shareddir', 'path' => ''),
 				)
 			),
-			array('%nonexistant%',
+			array('%nonexistent%',
 				array(
 				)
 			),
diff --git a/apps/files_versions/tests/versions.php b/apps/files_versions/tests/versions.php
index f6658e092bd6d2c0597a3edf3c3a981591239ea5..9d0ffb879465fd1a660eb66f1028448237eab5af 100644
--- a/apps/files_versions/tests/versions.php
+++ b/apps/files_versions/tests/versions.php
@@ -224,7 +224,7 @@ class Test_Files_Versioning extends \Test\TestCase {
 				),
 				11 // size of all deleted files (every file has the size 1)
 			),
-			// third set of versions, with some gaps inbetween
+			// third set of versions, with some gaps between
 			array(
 				array(
 					// first slice (10sec) keep one version every 2 seconds
@@ -605,7 +605,7 @@ class Test_Files_Versioning extends \Test\TestCase {
 
 	/**
 	 * @param string $hookName name of hook called
-	 * @param string $params variable to recieve parameters provided by hook
+	 * @param string $params variable to receive parameters provided by hook
 	 */
 	private function connectMockHooks($hookName, &$params) {
 		if ($hookName === null) {
diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php
index 5235011fb969452aa325117a7b6798a77edd341c..0b475ee71436c59b3f51c85b37caaf8be94cf629 100644
--- a/apps/user_ldap/lib/wizard.php
+++ b/apps/user_ldap/lib/wizard.php
@@ -221,7 +221,7 @@ class Wizard extends LDAPUtility {
 			$count = intval($this->countUsersWithAttribute($attr, true));
 			if($count > 0) {
 				//no change, but we sent it back to make sure the user interface
-				//is still correct, even if the ajax call was cancelled inbetween
+				//is still correct, even if the ajax call was cancelled meanwhile
 				$this->result->addChange('ldap_display_name', $attr);
 				return $this->result;
 			}
diff --git a/apps/user_ldap/tests/mapping/abstractmappingtest.php b/apps/user_ldap/tests/mapping/abstractmappingtest.php
index c6427be516ba4f5f04af201ec2221d2b9be06da8..a931a07a44cc6b626565111d75551a13c4d5d7bc 100644
--- a/apps/user_ldap/tests/mapping/abstractmappingtest.php
+++ b/apps/user_ldap/tests/mapping/abstractmappingtest.php
@@ -112,7 +112,7 @@ abstract class AbstractMappingTest extends \Test\TestCase {
 	}
 
 	/**
-	 * tests unmap() for both successfuly and not successful removing of
+	 * tests unmap() for both successful and unsuccessful removing of
 	 * mapping entries
 	 */
 	public function testUnmap() {