1. 20 6月, 2018 7 次提交
  2. 25 4月, 2018 1 次提交
  3. 07 2月, 2018 1 次提交
  4. 18 12月, 2017 1 次提交
  5. 06 9月, 2017 1 次提交
    • M
      Test rustdoc unit tests. · f87696b2
      Mark Simulacrum 提交于
      Doc tests are temporarily disabled until next release cycle, since
      current beta Cargo errors on them. Upgrade should be smooth as the
      relevant tests are already fixed in this commit.
      f87696b2
  6. 24 4月, 2017 1 次提交
  7. 24 11月, 2016 1 次提交
  8. 10 11月, 2016 1 次提交
  9. 03 10月, 2016 1 次提交
  10. 17 8月, 2016 1 次提交
  11. 03 5月, 2016 1 次提交
  12. 06 4月, 2016 1 次提交
  13. 27 3月, 2016 2 次提交
  14. 24 8月, 2015 1 次提交
  15. 26 6月, 2015 1 次提交
  16. 11 6月, 2015 1 次提交
  17. 08 4月, 2015 2 次提交
    • A
      rustdoc: Simplify predicates with paren notation · 6950f688
      Alex Crichton 提交于
      This change is aimed at improving cross-crate (inlined) notation of generic
      closures. The change modifies `simplify::where_predicates` to handle
      parenthesized notation as well as starting to handle supertrait bounds as well.
      This was necessary because all output constraints of closures are bound to
      `FnOnce` but most trait bounds are that of `FnMut`.
      
      Close #21801
      6950f688
    • A
      rustdoc: Simplify cross-crate where clauses · 11f26f99
      Alex Crichton 提交于
      Add a custom module to rustdoc which simplifies the output of `middle::ty` into
      a more readable form which tends to be written down anyway!
      
      Closes #20646
      11f26f99