Update README.md

This commit is contained in:
flopetautschnig 2023-05-04 14:02:41 +02:00 committed by GitHub
parent 894e22183d
commit 9a9d9d8c28
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -136,9 +136,6 @@ Every Request or Response has Headers represented by an Array of Headers. Every
pub const Header = struct { pub const Header = struct {
key: []const u8, key: []const u8,
value: []const u8, value: []const u8,
/// Turns the header key and value into a string.
pub fn stringify(header: Header) []const u8 {...}
}; };
``` ```