Skip to content

fix two typos #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 15, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _posts/2014-09-15-Rust-1.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ will continue to compile". Basically, it means that we think the
design of Rust finally feels right. More specifically, it feels
*minimal*. The language itself is now focused on a simple core
concept, which we call ownership and borrowing (more on this
later). Leveraging ownership and borrowing, we are been able to build
later). Leveraging ownership and borrowing, we have been able to build
up everything else that we have needed in libraries. This is very
exciting, because any library we can write, you can write too. This
really gives us confidence that Rust will not only achieve its
Expand Down Expand Up @@ -92,7 +92,7 @@ working on:
require zeroing of memory, which should improve compilation and
execution times. Felix Klock has implemented the requisite analysis
and is in the process of landing it.
- *Green threading:* We are removing support from green threading from
- *Green threading:* We are removing support for green threading from
the standard library and moving it out into an external
package. This allows for a closer match between the Rust model and
the underlying operating system, which makes for more efficient
Expand Down