summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Cuddeback <david.cuddeback@gmail.com>2015-10-15 20:49:51 -0700
committerDavid Cuddeback <david.cuddeback@gmail.com>2015-10-15 20:49:51 -0700
commitf430941a71795c8dc946d3f3cba6e93448bf041e (patch)
tree983a9576e3abb55616b4164c4070460719e45acf
parentbc33af300e8556692d40ad25eb38adac6d4e82a2 (diff)
downloadtermios-rs-f430941a71795c8dc946d3f3cba6e93448bf041e.zip
moves documentation link
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 11a3c7b..f193768 100644
--- a/README.md
+++ b/README.md
@@ -1,12 +1,12 @@
# Termios Rust Bindings
-[Documentation](http://dcuddeback.github.io/termios-rs/termios/)
-
The `termios` crate provides safe bindings for the Rust programming language to the [terminal I/O
interface](http://pubs.opengroup.org/onlinepubs/009695399/basedefs/termios.h.html) implemented by
Unix operating systems. The safe bindings are a small wrapper around the raw C functions, which
converts integer return values to `std::io::Result` to indicate success or failure.
+* [Documentation](http://dcuddeback.github.io/termios-rs/termios/)
+
## Dependencies
In order to use the `termios` crate, you must have a native `libc` library that implements the
termios API. This should be available on any Unix operating system. It has been confirmed to work on