summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Stroud <not.giving.you.my@email.me>2020-09-30 11:21:07 -0400
committerDavid Stroud <not.giving.you.my@email.me>2020-09-30 11:21:07 -0400
commit55dcb8eccc8458f4968af6052d99ce01fb4294e1 (patch)
treef73c62365307f8b52b3b1ecd4ab1d7d39b1b30b6
parent9c17cad7f0b03e3515f0cd5c56b5592b384cf9d4 (diff)
downloadrust-libc-55dcb8eccc8458f4968af6052d99ce01fb4294e1.tar.gz
Fix typo
In the `no-std` section of the README, there was a typo: "disable this feature remove the dependency". The word "to" was added in this commit to create "disable this feature to remove this dependency".
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 51ef2722f9..9457aa3b9c 100644
--- a/README.md
+++ b/README.md
@@ -28,7 +28,7 @@ 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`.