1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 09:02:48 -05:00

Fix typos in comments (#2876)

This commit is contained in:
Jim Hays
2023-05-09 11:38:47 -04:00
committed by GitHub
parent 0bd0910c39
commit f9038472ce
12 changed files with 13 additions and 13 deletions

View File

@ -110,7 +110,7 @@ public class CollectionCipherRepository : BaseEntityFrameworkRepository, ICollec
foreach (var requestedCollectionId in collectionIds)
{
// I don't totally agree with t.CipherId = cipherId here because that should have been guarenteed by
// I don't totally agree with t.CipherId = cipherId here because that should have been guaranteed by
// the WHERE above but the SQL Server CTE has it
var existingCollectionCipher = collectionCiphers
.FirstOrDefault(t => t.CollectionId == requestedCollectionId && t.CipherId == cipherId);