Skip to content

Commit 0794830

Browse files
nikneymkarlseguin
andauthored
fix misleading comment
Co-authored-by: Karl Seguin <karlseguin@users.noreply.github.com>
1 parent 0634acd commit 0794830

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/browser/storage/cookie.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ pub const Cookie = struct {
315315
const ValidateCookieError = error{ Empty, InvalidByteSequence };
316316

317317
/// Returns an error if cookie str length is 0
318-
/// or contains characters between 32...126.
318+
/// or contains characters outside of the ascii range 32...126.
319319
fn validateCookieString(str: []const u8) ValidateCookieError!void {
320320
if (str.len == 0) {
321321
return error.Empty;

0 commit comments

Comments
 (0)