diff --git a/README.md b/README.md index 51ef2722f9ca4aeaa86c9072eda21bf899f2bc97..af31c25aee4dfb29700121a6cb583fc3e6907cd5 100644 --- a/README.md +++ b/README.md @@ -28,14 +28,14 @@ libc = "0.2" ## Features * `std`: by default `libc` links to the standard library. Disable this - feature remove this dependency and be able to use `libc` in `#![no_std]` + feature to remove this dependency and be able to use `libc` in `#![no_std]` crates. * `extra_traits`: all `struct`s implemented in `libc` are `Copy` and `Clone`. This feature derives `Debug`, `Eq`, `Hash`, and `PartialEq`. * `const-extern-fn`: Changes some `extern fn`s into `const extern fn`s. - This features requires a nightly rustc + This feature requires a nightly rustc. * **deprecated**: `use_std` is deprecated, and is equivalent to `std`.