aboutsummaryrefslogtreecommitdiff
path: root/src/api/core/ciphers.rs
diff options
context:
space:
mode:
authortuhana <[email protected]>2023-10-05 20:08:26 +0300
committertuhana <[email protected]>2023-10-05 20:08:26 +0300
commit3d4be24902983a94a601aabe016d6e773e888cd9 (patch)
treeb85aea35f08fb5e0e9a81e2aeee4258032e8275d /src/api/core/ciphers.rs
parentbc26bfa589c007da9b9be37e1172060f38a948b9 (diff)
downloadvaultwarden-3d4be24902983a94a601aabe016d6e773e888cd9.tar.gz
vaultwarden-3d4be24902983a94a601aabe016d6e773e888cd9.zip
Fix typos
Diffstat (limited to 'src/api/core/ciphers.rs')
-rw-r--r--src/api/core/ciphers.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/api/core/ciphers.rs b/src/api/core/ciphers.rs
index 43702219..43e007ab 100644
--- a/src/api/core/ciphers.rs
+++ b/src/api/core/ciphers.rs
@@ -1752,7 +1752,7 @@ impl CipherSyncData {
let cipher_folders: HashMap<String, String>;
let cipher_favorites: HashSet<String>;
match sync_type {
- // User Sync supports Folders and Favorits
+ // User Sync supports Folders and Favorites
CipherSyncType::User => {
// Generate a HashMap with the Cipher UUID as key and the Folder UUID as value
cipher_folders = FolderCipher::find_by_user(user_uuid, conn).await.into_iter().collect();
@@ -1760,7 +1760,7 @@ impl CipherSyncData {
// Generate a HashSet of all the Cipher UUID's which are marked as favorite
cipher_favorites = Favorite::get_all_cipher_uuid_by_user(user_uuid, conn).await.into_iter().collect();
}
- // Organization Sync does not support Folders and Favorits.
+ // Organization Sync does not support Folders and Favorites.
// If these are set, it will cause issues in the web-vault.
CipherSyncType::Organization => {
cipher_folders = HashMap::with_capacity(0);
@@ -1805,7 +1805,7 @@ impl CipherSyncData {
.map(|collection_group| (collection_group.collections_uuid.clone(), collection_group))
.collect();
- // Get all organizations that the user has full access to via group assignement
+ // Get all organizations that the user has full access to via group assignment
let user_group_full_access_for_organizations: HashSet<String> =
Group::gather_user_organizations_full_access(user_uuid, conn).await.into_iter().collect();