]> git.lizzy.rs Git - rust.git/blobdiff - src/libcore/ops/mod.rs
Various minor/cosmetic improvements to code
[rust.git] / src / libcore / ops / mod.rs
index ce4f45762de48d3571a3f8e68660262c6d844a75..785f0733df2b85eb3cdbe9023eb434b2fefc5f4f 100644 (file)
@@ -27,7 +27,7 @@
 //! should have some resemblance to multiplication (and share expected
 //! properties like associativity).
 //!
-//! Note that the `&&` and `||` operators short-circuit, i.e. they only
+//! Note that the `&&` and `||` operators short-circuit, i.e., they only
 //! evaluate their second operand if it contributes to the result. Since this
 //! behavior is not enforceable by traits, `&&` and `||` are not supported as
 //! overloadable operators.
 
 #[unstable(feature = "coerce_unsized", issue = "27732")]
 pub use self::unsize::CoerceUnsized;
+
+#[unstable(feature = "dispatch_from_dyn", issue = "0")]
+pub use self::unsize::DispatchFromDyn;