mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-08-05 09:20:29 +00:00
fix specs
This commit is contained in:
parent
b605af00be
commit
699e7dff6e
2 changed files with 2 additions and 2 deletions
|
@ -18,6 +18,6 @@ assert(string.sub(UuidV4(), 9, 9) == "-")
|
|||
assert(string.sub(UuidV4(), 14, 14) == "-")
|
||||
assert(string.sub(UuidV4(), 15, 15) == "4")
|
||||
assert(string.sub(UuidV4(), 19, 19) == "-")
|
||||
local y = string.sub(UuidV4(), 20, 20)
|
||||
y = string.sub(UuidV4(), 20, 20)
|
||||
assert(y == "8" or y == "9" or y == "a" or y == "b")
|
||||
assert(string.sub(UuidV4(), 24, 24) == "-")
|
||||
|
|
|
@ -1089,7 +1089,7 @@ FUNCTIONS
|
|||
- keepalive (default = false): configures each request to keep the
|
||||
connection open (unless closed by the server) and reuse for the
|
||||
next request to the same host. This option is disabled when SSL
|
||||
connection is used.
|
||||
connection is used.
|
||||
The mapping of hosts and their sockets is stored in a table
|
||||
assigned to the `keepalive` field itself, so it can be passed to
|
||||
the next call.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue