@@ -306,7 +306,7 @@ Version 0.9 (January 2014)
306306 * A new facility for enabling experimental features (feature gating) has
307307 been added, using the crate-level `#[feature(foo)]` attribute.
308308 * Managed boxes (@) are now behind a feature gate
309- (`#[feature(managed_boxes)]`) in preperation for future removal. Use the
309+ (`#[feature(managed_boxes)]`) in preparation for future removal. Use the
310310 standard library's `Gc` or `Rc` types instead.
311311 * `@mut` has been removed. Use `std::cell::{Cell, RefCell}` instead.
312312 * Jumping back to the top of a loop is now done with `continue` instead of
@@ -398,7 +398,7 @@ Version 0.9 (January 2014)
398398 * std: `fmt::Default` can be implemented for any type to provide default
399399 formatting to the `format!` macro, as in `format!("{}", myfoo)`.
400400 * std: The `rand` API continues to be tweaked.
401- * std: The `rust_begin_unwind` function, useful for insterting breakpoints
401+ * std: The `rust_begin_unwind` function, useful for inserting breakpoints
402402 on failure in gdb, is now named `rust_fail`.
403403 * std: The `each_key` and `each_value` methods on `HashMap` have been
404404 replaced by the `keys` and `values` iterators.
@@ -429,7 +429,7 @@ Version 0.9 (January 2014)
429429 extensible interfaces and is now implemented by two different crates:
430430 libnative, for native threading and I/O; and libgreen, for green threading
431431 and I/O. This paves the way for using the standard library in more limited
432- embeded environments.
432+ embedded environments.
433433 * std: The `comm` module has been rewritten to be much faster, have a
434434 simpler, more consistent API, and to work for both native and green
435435 threading.
0 commit comments