From 14686444558e7bfd58b2dc8b962d9047cadefff5 Mon Sep 17 00:00:00 2001 From: Anantadinath Date: Thu, 29 Oct 2020 18:59:39 +0530 Subject: [PATCH] Update ReadMe The Old link is dead and this is the new link mentioned on the old link. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index df0afde9..b8cde46c 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ httpuv provides low-level socket and protocol support for handling HTTP and WebSocket requests directly from within R. It uses a multithreaded architecture, where I/O is handled on one thread, and the R callbacks are handled on another. -It is primarily intended as a building block for other packages, rather than making it particularly easy to create complete web applications using httpuv alone. httpuv is built on top of the [libuv](https://github.com/joyent/libuv) and [http-parser](https://github.com/joyent/http-parser) C libraries, both of which were developed by Joyent, Inc. +It is primarily intended as a building block for other packages, rather than making it particularly easy to create complete web applications using httpuv alone. httpuv is built on top of the [libuv](https://github.com/libuv/libuv) and [http-parser](https://github.com/joyent/http-parser) C libraries, both of which were developed by Joyent, Inc. ## Installing