summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorJeff Olson <olson.jeffery@gmail.com>2012-04-01 13:47:47 -0700
committerBrian Anderson <banderson@mozilla.com>2012-04-06 15:35:49 -0700
commit55143bb14cd1458de665cc6115ee32621e653049 (patch)
tree2a5cbee61c3bc79dea29386aa0138bb041036e11 /src/libstd
parent26addfdd8193b78783aa3235cb0823082b1da2c8 (diff)
downloadrust-55143bb14cd1458de665cc6115ee32621e653049.tar.gz
rust-55143bb14cd1458de665cc6115ee32621e653049.zip
docs tweak for uv module
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/uv.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libstd/uv.rs b/src/libstd/uv.rs
index c346862a07a..4cd29261ed7 100644
--- a/src/libstd/uv.rs
+++ b/src/libstd/uv.rs
@@ -1,5 +1,5 @@
 #[doc = "
-Rust mappings to libuv (http://github.com/joyent/libuv)
+Rust bindings to libuv
 
 This crate provides a low-level mapping to libuv, a library for
 running an asynchronous event loop, with extensive IO operations.
@@ -10,7 +10,8 @@ should not be inferred from its current form.
 The base module contains a set of safe functions for creating
 an event loop that runs within a single task, but allows operations
 against it from other tasks, but funneling it through a uv_async
-request which reads from a port that users write to.
+request which reads from a port that users write to. This API should
+not be considered stable and may go away in the near future.
 
 The 'll' module contains low-level, bare-metal mappings to the libuv
 C-api. All functions within this module are marked unsafe and should