summaryrefslogtreecommitdiffstats
path: root/apps/settings/src
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/settings/src
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/settings/src')
-rw-r--r--apps/settings/src/components/UserList/UserRow.vue4
-rw-r--r--apps/settings/src/store/apps.js2
-rw-r--r--apps/settings/src/store/users.js2
3 files changed, 4 insertions, 4 deletions
diff --git a/apps/settings/src/components/UserList/UserRow.vue b/apps/settings/src/components/UserList/UserRow.vue
index bc086adc5cb..820a90fb1e3 100644
--- a/apps/settings/src/components/UserList/UserRow.vue
+++ b/apps/settings/src/components/UserList/UserRow.vue
@@ -445,7 +445,7 @@ export default {
/**
* Set user password
*
- * @param {string} password The email adress
+ * @param {string} password The email address
*/
updatePassword() {
const password = this.$refs.password.value
@@ -463,7 +463,7 @@ export default {
/**
* Set user mailAddress
*
- * @param {string} mailAddress The email adress
+ * @param {string} mailAddress The email address
*/
updateEmail() {
const mailAddress = this.$refs.mailAddress.value
diff --git a/apps/settings/src/store/apps.js b/apps/settings/src/store/apps.js
index e6ddd76aaec..27a0faefe00 100644
--- a/apps/settings/src/store/apps.js
+++ b/apps/settings/src/store/apps.js
@@ -39,7 +39,7 @@ const state = {
const mutations = {
APPS_API_FAILURE(state, error) {
- showError(t('settings', 'An error occured during the request. Unable to proceed.') + '<br>' + error.error.response.data.data.message, { isHTML: true })
+ showError(t('settings', 'An error occurred during the request. Unable to proceed.') + '<br>' + error.error.response.data.data.message, { isHTML: true })
console.error(state, error)
},
diff --git a/apps/settings/src/store/users.js b/apps/settings/src/store/users.js
index 792b9123129..c220e21e49f 100644
--- a/apps/settings/src/store/users.js
+++ b/apps/settings/src/store/users.js
@@ -197,7 +197,7 @@ const mutations = {
break
default:
logger.error(`Unknown action type in updateUserCounts: '${actionType}'`)
- // not throwing error to interupt execution as this is not fatal
+ // not throwing error to interrupt execution as this is not fatal
}
},
setUserData(state, { userid, key, value }) {