@@ -306,7 +306,7 @@ Version 0.9 (January 2014)
306
306
* A new facility for enabling experimental features (feature gating) has
307
307
been added, using the crate-level `#[feature(foo)]` attribute.
308
308
* 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
310
310
standard library's `Gc` or `Rc` types instead.
311
311
* `@mut` has been removed. Use `std::cell::{Cell, RefCell}` instead.
312
312
* Jumping back to the top of a loop is now done with `continue` instead of
@@ -398,7 +398,7 @@ Version 0.9 (January 2014)
398
398
* std: `fmt::Default` can be implemented for any type to provide default
399
399
formatting to the `format!` macro, as in `format!("{}", myfoo)`.
400
400
* 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
402
402
on failure in gdb, is now named `rust_fail`.
403
403
* std: The `each_key` and `each_value` methods on `HashMap` have been
404
404
replaced by the `keys` and `values` iterators.
@@ -429,7 +429,7 @@ Version 0.9 (January 2014)
429
429
extensible interfaces and is now implemented by two different crates:
430
430
libnative, for native threading and I/O; and libgreen, for green threading
431
431
and I/O. This paves the way for using the standard library in more limited
432
- embeded environments.
432
+ embedded environments.
433
433
* std: The `comm` module has been rewritten to be much faster, have a
434
434
simpler, more consistent API, and to work for both native and green
435
435
threading.
0 commit comments