refactor: Remove unused Span alias

Also, fixup some wording.
This commit is contained in:
MarcoFalke
2024-12-18 17:12:13 +01:00
parent fade0b5e5e
commit fa0c6b7179
6 changed files with 23 additions and 36 deletions

View File

@@ -33,7 +33,7 @@ void poly1305_finish(poly1305_context *st, unsigned char mac[16]) noexcept;
} // namespace poly1305_donna
/** C++ wrapper with std::byte std::span interface around poly1305_donna code. */
/** C++ wrapper with std::byte span interface around poly1305_donna code. */
class Poly1305
{
poly1305_donna::poly1305_context m_ctx;