summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuki Okushi <huyuumi.dev@gmail.com>2020-10-01 01:37:36 +0900
committerGitHub <noreply@github.com>2020-10-01 01:37:36 +0900
commitc7a095b86d37f3b8f50f49a28f79c00748ef9c24 (patch)
tree2db9430db6f3e4914696c57e4384069c5a22a9c9
parent9c17cad7f0b03e3515f0cd5c56b5592b384cf9d4 (diff)
parent09d233b42f3bb2bda4d2e4867f97c49fb3693c52 (diff)
downloadrust-libc-c7a095b86d37f3b8f50f49a28f79c00748ef9c24.tar.gz
Merge pull request #1908 from dapper-gh/typo
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 51ef2722f9..af31c25aee 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`.