Skip to content

Commit 10a5c39

Browse files
authored
Add soundness and api breakage CI (#58)
1 parent 35e0d67 commit 10a5c39

23 files changed

+220
-2742
lines changed

Sources/RediStack/RESP/RESPTranslator.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ extension RESPTranslator {
221221
let expectedRemainingMessageSize = size + 2
222222
guard buffer.readableBytes >= expectedRemainingMessageSize else { return nil }
223223

224-
// sanity check that the declared content size matches the actual size.
224+
// soundness check that the declared content size matches the actual size.
225225
guard
226226
buffer.getInteger(at: buffer.readerIndex + expectedRemainingMessageSize - 1, as: UInt8.self) == .newline
227227
else { throw ParsingError.bulkStringSizeMismatch }

Tests/LinuxMain.swift

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/theme/assets/css/highlight.css.scss

Lines changed: 0 additions & 63 deletions
This file was deleted.

0 commit comments

Comments
 (0)