diff options
author | Jenil Christo <jenilchristo5@gmail.com> | 2019-06-07 00:28:07 +0530 |
---|---|---|
committer | cjihrig <cjihrig@gmail.com> | 2019-06-24 21:32:13 -0400 |
commit | 805401b0b30d58ceb4fa28cf6881015e8fec1cf2 (patch) | |
tree | 74ba95077c44cd40d3806b8e1907222745154338 /docs/src | |
parent | f8cab71872fcbc4b96e4998a896f9fa8a60989e8 (diff) | |
download | libuv-805401b0b30d58ceb4fa28cf6881015e8fec1cf2.tar.gz libuv-805401b0b30d58ceb4fa28cf6881015e8fec1cf2.zip |
doc: add link to nodejs.org
PR-URL: https://github.com/libuv/libuv/pull/2325
Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/design.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/src/design.rst b/docs/src/design.rst index 001b1233..9594bd1a 100644 --- a/docs/src/design.rst +++ b/docs/src/design.rst @@ -4,9 +4,11 @@ Design overview =============== -libuv is cross-platform support library which was originally written for NodeJS. It's designed +libuv is cross-platform support library which was originally written for `Node.js`_. It's designed around the event-driven asynchronous I/O model. +.. _Node.js: https://nodejs.org + The library provides much more than a simple abstraction over different I/O polling mechanisms: 'handles' and 'streams' provide a high level abstraction for sockets and other entities; cross-platform file I/O and threading functionality is also provided, amongst other things. |