From 1437d8417a4ab70646bafa41f64214f4c931300f Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Wed, 15 Nov 2017 16:40:48 -0800 Subject: 4122 --- html/092socket.mu.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'html/092socket.mu.html') diff --git a/html/092socket.mu.html b/html/092socket.mu.html index 23a8ac3a..2c3412a3 100644 --- a/html/092socket.mu.html +++ b/html/092socket.mu.html @@ -146,7 +146,7 @@ if ('onhashchange' in window) { 84 host:text, path:text <- split-at uri, 47/slash 85 socket:num <- $open-client-socket host, port 86 assert socket, [contents] - 87 req:text <- interpolate [GET _ HTTP/1.1], path + 87 req:text <- interpolate [GET _ HTTP/1.1], path 88 request-socket socket, req 89 contents:&:source:char, sink:&:sink:char <- new-channel 10000 90 start-running receive-from-client-socket-and-close socket, sink @@ -220,8 +220,8 @@ if ('onhashchange' in window) { 158 ¦ return 159 } 160 idx:num <- find-next text, delim, 0 -161 x:text <- copy-range text, 0, idx -162 y:text <- copy-range text, idx, len +161 x:text <- copy-range text, 0, idx +162 y:text <- copy-range text, idx, len 163 ] 164 165 scenario text-split-at [ -- cgit 1.4.1-2-gfad0 ' class='blob'>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38