aboutsummaryrefslogtreecommitdiffstats
path: root/apps/federation
diff options
context:
space:
mode:
authorluz paz <luzpaz@github.com>2022-07-28 07:11:38 -0400
committernextcloud-command <nextcloud-command@users.noreply.github.com>2022-09-05 12:59:54 +0000
commit9d26671f05275055619960a66981201ed660bdd2 (patch)
treee3d4f35333192763a5fbbb0ebcbf4e6125de221b /apps/federation
parentf496e471e06d546179e3f12af1e6cc9319db9bb3 (diff)
downloadnextcloud-server-9d26671f05275055619960a66981201ed660bdd2.tar.gz
nextcloud-server-9d26671f05275055619960a66981201ed660bdd2.zip
Fix typos in apps/ subdirectory
Found via `codespell -q 3 -S l10n,./apps/files_external/3rdparty -L adn,ba,boxs,keypair,jus,optionel,ressource,tabel ./apps/` Signed-off-by: luz paz <luzpaz@github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps/federation')
-rw-r--r--apps/federation/js/settings-admin.js2
-rw-r--r--apps/federation/lib/BackgroundJob/RequestSharedSecret.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/federation/js/settings-admin.js b/apps/federation/js/settings-admin.js
index d8ec194dcda..fed0f441e01 100644
--- a/apps/federation/js/settings-admin.js
+++ b/apps/federation/js/settings-admin.js
@@ -69,7 +69,7 @@
var url = $(this).val();
- // toggle add-button visiblity based on input length
+ // toggle add-button visibility based on input length
if ( url.length > 0 )
$btnSubmit.removeClass("hidden")
else
diff --git a/apps/federation/lib/BackgroundJob/RequestSharedSecret.php b/apps/federation/lib/BackgroundJob/RequestSharedSecret.php
index 2080418af61..13ac9178eda 100644
--- a/apps/federation/lib/BackgroundJob/RequestSharedSecret.php
+++ b/apps/federation/lib/BackgroundJob/RequestSharedSecret.php
@@ -155,7 +155,7 @@ class RequestSharedSecret extends Job {
$endPoints = $this->ocsDiscoveryService->discover($target, 'FEDERATED_SHARING');
$endPoint = isset($endPoints['shared-secret']) ? $endPoints['shared-secret'] : $this->defaultEndPoint;
- // make sure that we have a well formated url
+ // make sure that we have a well formatted url
$url = rtrim($target, '/') . '/' . trim($endPoint, '/');
try {