about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMasaki Hara <ackie.h.gmai@gmail.com>2018-11-19 00:27:16 +0900
committerMasaki Hara <ackie.h.gmai@gmail.com>2018-11-21 22:20:22 +0900
commitc6a803a286faae901a6ebd35ec222901f691c7ec (patch)
tree39476bc76b5300e1faeb7d03f8a282ddf330781b
parent2ff6ffc872645bf6f5bc7dda4a817a1fc7789684 (diff)
downloadrust-c6a803a286faae901a6ebd35ec222901f691c7ec.tar.gz
rust-c6a803a286faae901a6ebd35ec222901f691c7ec.zip
Modify doc to reflect the unsized-locals improvement.
-rw-r--r--src/doc/unstable-book/src/language-features/unsized-locals.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/doc/unstable-book/src/language-features/unsized-locals.md b/src/doc/unstable-book/src/language-features/unsized-locals.md
index 6f7cf754ae0..1165ab93a14 100644
--- a/src/doc/unstable-book/src/language-features/unsized-locals.md
+++ b/src/doc/unstable-book/src/language-features/unsized-locals.md
@@ -80,8 +80,6 @@ fn main() {
 }
 ```
 
-However, the current implementation allows `MyTupleStruct(..)` to be unsized. This will be fixed in the future.
-
 ## By-value trait objects
 
 With this feature, you can have by-value `self` arguments without `Self: Sized` bounds.