summary refs log tree commit diff
path: root/doc
AgeCommit message (Collapse)AuthorLines
2012-03-27Minor typo fixes.Graydon Hoare-2/+2
2012-03-26Bulk-edit mutable -> mut.Graydon Hoare-30/+30
2012-03-25str::to_chars -> str::charsJacob Parker-1/+1
2012-03-22make --enforce-mut-vars always on, add mut annotations to remaining filesNiko Matsakis-31/+37
2012-03-20doc: Fix more language ref testsBrian Anderson-41/+37
2012-03-20doc: Fix some language ref examplesBrian Anderson-96/+199
2012-03-20doc: tag->enum in codemirror-rust.jsBrian Anderson-2/+2
2012-03-20doc: Run language ref through prep.jsBrian Anderson-1/+10
This is so we can strip out support code needed to make the examples work, and as a bonus it does syntax highlighting.
2012-03-20test: Begin running the language ref examples. Mostly xfailedBrian Anderson-61/+61
2012-03-20doc: Switch the tutorial to pandoc's method of tagging code blocksBrian Anderson-35/+19
Instead of '## tag', it's '~~~ {.tag}'
2012-03-20doc: Fix external links in tutorialBrian Anderson-4/+2
2012-03-20doc: Remove unary move operator from language ref. Closes #2032Brian Anderson-19/+0
2012-03-18core: Rename vec::position_elt to position_elemBrian Anderson-2/+2
2012-03-13Name types after their modules instead of 't'Brian Anderson-6/+6
2012-03-12Libc/os/run/rand/io reorganization. Close #1373. Close #1638.Graydon Hoare-33/+32
- Move io, run and rand to core. - Remove incorrect ctypes module (use libc). - Remove os-specific modules for os and fs. - Split fs between core::path and core::os.
2012-03-12doc: Add some info about native mods and crust functionsBrian Anderson-1/+79
2012-03-11Document what the type of the main() function should beTim Chevalier-0/+5
2012-03-11Docs for infinite loopsTim Chevalier-2/+34
2012-03-11doc: Add 'crust' to keywordsBrian Anderson-1/+1
2012-03-10doc: Update tutorial for task API changesBrian Anderson-6/+5
2012-03-10doc: Indent preformatted text a little moreBrian Anderson-1/+1
2012-03-09build: Switch from naturaldocs to rustdocBrian Anderson-285/+0
2012-02-20core: New task APIBrian Anderson-44/+40
2012-02-14Duplicate keywordDaniel Luz-1/+1
2012-02-14Fixed missing quote on bracket literalDaniel Luz-1/+1
2012-02-15Fix typos in the reference manualTomoki Aonuma-5/+5
2012-02-14tutorial: Mention how the destructor works in the section on resources. ↵Patrick Walton-4/+5
Closes #1615.
2012-02-06Make keyword table in reference reflect reality more closelyMarijn Haverbeke-47/+21
And remove the part about reserved words.
2012-02-05Merge remote-tracking branch 'erickt/master'Brian Anderson-2/+2
Conflicts: src/libcore/vec.rs src/libstd/getopts.rs
2012-02-05Add missing 'use std' in tutorial exampleMarijn Haverbeke-0/+1
2012-01-30Remove ternary operatorPaul Woolcock-7/+0
`expr_ternary`, `ternary_to_if`, and all parses & lexer definitions have been removed.
2012-01-28core: rename vec::position* functionsErick Tryzelaar-2/+2
Almost all of the vec functions that predicates don't have a corresponding function that takes a single element, so this commit renames the common fn usecase to be the default.
2012-01-26tutorial: Fix types in gettimeofday example. Closes #1657Brian Anderson-3/+5
2012-01-25In the tutorial install directions, mention that you may need to sudo make ↵Tim Chevalier-3/+6
install
2012-01-25Added a small note to help explain tag's in older code.Joe Pletcher-1/+3
2012-01-25Remove stale references to tags, replaced with enums.Joe Pletcher-3/+3
2012-01-25Remove reference to tags, replace enums.Joe Pletcher-2/+2
2012-01-24Documentation only -- typos in section on swap expressionTim Chevalier-5/+5
Closes #1595. Thanks to mikesamuel.
2012-01-23Update docs to reflect new export formsTim Chevalier-1/+37
2012-01-23Remove mention of Windows installer from tutorialBrian Anderson-7/+5
We don't want users to hurt themselves, since the installer has a bug in 0.1 that could possibly corrupt %PATH% Conflicts: doc/tutorial.md
2012-01-23tutorial: Remove mention of windows installerBrian Anderson-19/+8
2012-01-22Corrects order of identifier and type in arguments list in 7.3.3 Constraints ↵Rick Waldron-9/+9
example. Fixes #1613
2012-01-21tutorial: Make the comm examples passBrian Anderson-4/+7
2012-01-21tutorial: Un-xfail some working examplesBrian Anderson-3/+0
2012-01-21doc: Fix typoTaras Shpot-1/+1
2012-01-20doc: Remove extract-tests.js and run-tests.shBrian Anderson-52/+0
The tutorial tests are run as part of the test suite now.
2012-01-20build: Run tutorial testsBrian Anderson-56/+10
2012-01-20Typo fixes.Lindsey Kuper-5/+4
2012-01-20doc: Translate extract-tests.js to pythonBrian Anderson-0/+55
2012-01-20Update the keyword lists in rust.md and syntax.vimMatt Brubeck-2/+3
Add new keywords "enum" and "of", and remove old keywords "auth", "chan", "log_err", "tag", and "task". Also add reserved words to the syntax file, to help Vim users avoid using them as identifiers.