Skip to content

Commit ba99f1c

Browse files
authored
Merge pull request #33895 from nextcloud/fix/fix-apps-typos
Fix typos in apps/ subdirectory
2 parents 405edfa + 9d26671 commit ba99f1c

File tree

67 files changed

+89
-89
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+89
-89
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# cloud_federation_api
2-
The cloud federation API allows to share information like files, contacts, calendars, incoming calls, etc accross Nextcloud instances
2+
The cloud federation API allows to share information like files, contacts, calendars, incoming calls, etc across Nextcloud instances

apps/comments/src/activitytabviewplugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
*
3232
* @param {OCA.Activity.ActivityModel} model for this activity
3333
* @param {jQuery} $el jQuery handle for this activity
34-
* @param {string} view The view that displayes this activity
34+
* @param {string} view The view that displays this activity
3535
*/
3636
prepareModelForDisplay(model, $el, view) {
3737
if (model.get('app') !== 'comments' || model.get('type') !== 'comments') {

apps/comments/src/services/GetComments.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export default async function({ commentsType, ressourceId }, options = {}) {
5050
<oc:offset>${options.offset || 0}</oc:offset>
5151
</oc:filter-comments>`,
5252
}, options))
53-
// See example on how it's done normaly
53+
// See example on how it's done normally
5454
// https://github.com/perry-mitchell/webdav-client/blob/9de2da4a2599e06bd86c2778145b7ade39fe0b3c/source/interface/stat.js#L19
5555
// Waiting for proper REPORT integration https://github.com/perry-mitchell/webdav-client/issues/207
5656
.then(res => {

apps/dav/lib/DAV/SystemPrincipalBackend.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function getPrincipalsByPrefix($prefixPath) {
6060
}
6161

6262
/**
63-
* Returns a specific principal, specified by it's path.
63+
* Returns a specific principal, specified by its path.
6464
* The returned structure should be the exact same as from
6565
* getPrincipalsByPrefix.
6666
*

apps/dav/lib/Listener/CalendarShareUpdateListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function handle(Event $event): void {
5050
return;
5151
}
5252

53-
$this->logger->debug("Creating activity for Calendar having it's shares updated");
53+
$this->logger->debug("Creating activity for Calendar having its shares updated");
5454

5555
$this->activityBackend->onCalendarUpdateShares(
5656
$event->getCalendarData(),

apps/dav/tests/unit/CalDAV/CalDavBackendTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class CalDavBackendTest extends AbstractCalDavBackend {
5555
public function testCalendarOperations() {
5656
$calendarId = $this->createTestCalendar();
5757

58-
// update it's display name
58+
// update its display name
5959
$patch = new PropPatch([
6060
'{DAV:}displayname' => 'Unit test',
6161
'{urn:ietf:params:xml:ns:caldav}calendar-description' => 'Calendar used for unit testing'

apps/dav/tests/unit/CardDAV/CardDavBackendTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ public function testAddressBookOperations() {
193193
$this->assertEquals('Example', $books[0]['{DAV:}displayname']);
194194
$this->assertEquals('User\'s displayname', $books[0]['{http://nextcloud.com/ns}owner-displayname']);
195195

196-
// update it's display name
196+
// update its display name
197197
$patch = new PropPatch([
198198
'{DAV:}displayname' => 'Unit test',
199199
'{urn:ietf:params:xml:ns:carddav}addressbook-description' => 'Addressbook used for unit testing'

apps/encryption/lib/KeyManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ public function backupUserKeys($purpose, $uid) {
623623
}
624624

625625
/**
626-
* creat a backup of the users private and public key and then delete it
626+
* create a backup of the users private and public key and then delete it
627627
*
628628
* @param string $uid
629629
*/

apps/federatedfilesharing/lib/FederatedShareProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -969,7 +969,7 @@ private function getNode($userId, $id) {
969969
* @param int $shareType
970970
*/
971971
public function userDeleted($uid, $shareType) {
972-
//TODO: probabaly a good idea to send unshare info to remote servers
972+
//TODO: probably a good idea to send unshare info to remote servers
973973

974974
$qb = $this->dbConnection->getQueryBuilder();
975975

apps/federation/js/settings-admin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969

7070
var url = $(this).val();
7171

72-
// toggle add-button visiblity based on input length
72+
// toggle add-button visibility based on input length
7373
if ( url.length > 0 )
7474
$btnSubmit.removeClass("hidden")
7575
else

0 commit comments

Comments
 (0)