We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0634acd commit 0794830Copy full SHA for 0794830
src/browser/storage/cookie.zig
@@ -315,7 +315,7 @@ pub const Cookie = struct {
315
const ValidateCookieError = error{ Empty, InvalidByteSequence };
316
317
/// Returns an error if cookie str length is 0
318
- /// or contains characters between 32...126.
+ /// or contains characters outside of the ascii range 32...126.
319
fn validateCookieString(str: []const u8) ValidateCookieError!void {
320
if (str.len == 0) {
321
return error.Empty;
0 commit comments