]> git.lizzy.rs Git - rust.git/blobdiff - src/libstd/io/mod.rs
Adjusted heading and created dedicated section in std::io docs
[rust.git] / src / libstd / io / mod.rs
index 8ac46bf51f1bf9de9b5beecb908fac56e5b74d47..b5ba6ff54c0e3b7d32b5fcb9ed1b450aae48562d 100644 (file)
 //!
 //! [result]: type.Result.html
 //! [try]: ../macro.try!.html
+//!
+//! ## Platform-specific behavior
+//!
+//! Many I/O functions throughout the standard library are documented to indicate
+//! what various library or syscalls they are delegated to. This is done to help
+//! applications both understand what's happening under the hood as well as investigate
+//! any possibly unclear semantics. Note, however, that this is informative, not a binding
+//! contract. The implementation of many of these functions are subject to change over
+//! time and may call fewer or more syscalls/library functions.
 
 #![stable(feature = "rust1", since = "1.0.0")]