| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-07-17 | Fix doc link | Felix Rabe | -20/+20 | |
| The link for comparison: - https://doc.rust-lang.org/book/second-edition/ch19-04-advanced-types.html#dynamically-sized-types--sized (broken) - https://doc.rust-lang.org/book/second-edition/ch19-04-advanced-types.html#dynamically-sized-types-and-sized (fixed) This commit is the result of (first) searching via: find src -type f -print0 | xargs -0 fgrep -l dynamically-sized-types--sized and then replacing all relevant occurrences via: find src/{libcore,test/ui} -type f -print0 | xargs -0 sed -i.bak \ s/dynamically-sized-types--sized/dynamically-sized-types-and-sized/g find src/{libcore,test/ui} -type f -name '*.bak' -print0 | xargs -0 rm (Note: Commands run on macOS 10.13 (BSD). `sed -i.bak` should work on GNU/Linux as well, but not tested.) | ||||
| 2018-07-10 | Fix typo in error message E0277 | Rémy Rakic | -20/+20 | |
| 2018-06-23 | add `dyn` to display of dynamic (trait) type names | Zack M. Davis | -16/+16 | |
| The `dyn Trait` syntax was stabilized in 199ee327. Resolves #49277. | ||||
| 2018-06-19 | Update message for `!Sized` types | Esteban Küber | -40/+40 | |
| 2018-06-19 | Add link to book for `Sized` errors | Esteban Küber | -0/+20 | |
| 2018-06-19 | Add message to `rustc_on_unimplemented` attributes in core | Esteban Küber | -56/+56 | |
| 2018-05-10 | Fix tuple struct field spans | Esteban Küber | -10/+10 | |
| 2018-03-14 | update tests | Guillaume Gomez | -1/+1 | |
| 2018-02-26 | Update UI tests | Vadim Petrochenkov | -20/+20 | |
| 2018-02-25 | Update ui tests | Guillaume Gomez | -0/+1 | |
| 2017-12-14 | Move compile-fail tests with NOTE/HELP annotations to UI | Vadim Petrochenkov | -0/+190 | |
