]> git.lizzy.rs Git - rust.git/blobdiff - src/doc/rust.md
rollup merge of #17355 : gamazeps/issue17210
[rust.git] / src / doc / rust.md
index 0d1331e6077cd9d2270c0872f14658f700a6bff0..5028f224475a94b839b8977e2eea3d2b46a6bcf5 100644 (file)
@@ -2557,6 +2557,8 @@ The currently implemented features of the reference compiler are:
 
 * `tuple_indexing` - Allows use of tuple indexing (expressions like `expr.0`)
 
+* `associated_types` - Allows type aliases in traits. Experimental.
+
 If a feature is promoted to a language feature, then all existing programs will
 start to receive compilation warnings about #[feature] directives which enabled
 the new feature (because the directive is no longer necessary). However, if
@@ -3698,7 +3700,7 @@ There are two varieties of pointer in Rust:
     they exist to support interoperability with foreign code,
     and writing performance-critical or low-level functions.
 
-The standard library contains addtional 'smart pointer' types beyond references
+The standard library contains additional 'smart pointer' types beyond references
 and raw pointers.
 
 ### Function types