diff --git a/lib/std/crypto/salsa20.zig b/lib/std/crypto/salsa20.zig index 892c30c669d7a5ae009eb2ceff545b6864247cf6..3d4ec106063cd16f820be464df9e053c21d376b0 100644 --- a/lib/std/crypto/salsa20.zig +++ b/lib/std/crypto/salsa20.zig @@ -387,7 +387,7 @@ pub const XSalsa20Poly1305 = struct { /// session identifiers and sequence numbers. /// /// Since there is no separation between the associated data and - /// the ciphertext, its length must not contain be under an adversary's + /// the ciphertext, its length must not be under an adversary's /// control. pub fn encrypt(c: []u8, tag: *[tag_length]u8, m: []const u8, ad: []const u8, npub: [nonce_length]u8, k: [key_length]u8) void { debug.assert(c.len == m.len);