Skip to content

Commit 6d0331a

Browse files
committed
Fix reference to async
1 parent 392712f commit 6d0331a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_labs/concurrent-http-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Assuming you did the previous lab correctly, you shouldn't have to change any of
3131
To control whether you are using processes or threads, we need to modify the CLI of your program. Add a new flag option, called `-c`/`--concurrency`. It takes a string which controls which concurrency technique you are using. The complete CLI will look like
3232

3333
```
34-
usage: http_server.py [-h] [-p PORT] [-v] [-d] [-f FOLDER] [-c {thread,thread-pool,async}]
34+
usage: http_server.py [-h] [-p PORT] [-v] [-d] [-f FOLDER] [-c {thread,thread-pool,select}]
3535
3636
optional arguments:
3737
-h, --help show this help message and exit

0 commit comments

Comments
 (0)