about summary refs log tree commit diff
path: root/src/tools/rustbook
AgeCommit message (Collapse)AuthorLines
2016-05-03Remove unused trait imports flagged by lintSeo Sanghyeon-2/+0
2016-03-22fix alignmentJorge Aparicio-4/+4
2016-03-22sprinkle feature gates here and thereJorge Aparicio-0/+1
2016-03-22try! -> ?Jorge Aparicio-39/+39
Automated conversion using the untry tool [1] and the following command: ``` $ find -name '*.rs' -type f | xargs untry ``` at the root of the Rust repo. [1]: https://github.com/japaric/untry
2016-03-08rustbuild: Move rustbook to a `src/tools` directoryAlex Crichton-0/+986
We've actually got quite a few tools that are compiled as part of our build, let's start housing them all in a `tools` directory.