about summary refs log tree commit diff
path: root/doc/guide-tasks.md
AgeCommit message (Collapse)AuthorLines
2014-02-02Move doc/ to src/doc/Alex Crichton-519/+0
We generate documentation into the doc/ directory, so we shouldn't be intermingling source files with generated files
2014-01-29Removing usage of the do keyword from documentationScott Lawrence-26/+21
2014-01-28Update extract-tests.py to use same test directives as rustdoc.William Ting-4/+4
Closes #11362.
2014-01-17Add a generic power functionFlavio Percoco-2/+2
The patch adds a `pow` function for types implementing `One`, `Mul` and `Clone` trait. The patch also renames f32 and f64 pow into powf in order to still have a way to easily have float powers. It uses llvms intrinsics. The pow implementation for all num types uses the exponentiation by square. Fixes bug #11499
2014-01-11Remove re-exports of std::io::stdio::{print, println} in the prelude.Brendan Zabarauskas-3/+3
The `print!` and `println!` macros are now the preferred method of printing, and so there is no reason to export the `stdio` functions in the prelude. The functions have also been replaced by their macro counterparts in the tutorial and other documentation so that newcomers don't get confused about what they should be using.
2014-01-07doc: Title guides consistentlyBrian Anderson-1/+1
2014-01-06Fix formatting of some code blocks in pdf docsMick Koch-0/+9
Code blocks apparently need to be surrounded by whitespace to be output correctly when generating pdfs
2014-01-05Convert sub tutorials into Guides #10838Alan Andrade-0/+515
Ensure configure creates doc/guides directory Fix configure makefile and tests Remove old guides dir and configure option, convert testing to guide Remove ignored files Fix submodule issue prepend dir in makefile so that bor knows how to build the docs S to uppercase