about summary refs log tree commit diff
path: root/doc
AgeCommit message (Collapse)AuthorLines
2013-04-04auto merge of #5716 : dhardy/rust/master, r=thestingerbors-1/+1
2013-04-04Tutorial: rename variable to avoid confusion.Diggory Hardy-1/+1
2013-04-04auto merge of #5713 : brson/rust/tutorial2, r=thestingerbors-39/+28
It doesn't quite reflect reality
2013-04-04auto merge of #5707 : brettcannon/rust/patch-1, r=thestingerbors-1/+1
The sentence "Remember that `(float, float)` is a tuple of two floats" sounds like you've already read a section on tuples, but that section comes later. Changing it to "Assuming that ..." makes it more about taking the writer's word that the syntax is how tuples are defined.
2013-04-04auto merge of #5703 : steveklabnik/rust/add_log_docs, r=thestingerbors-0/+22
Closes #5699.
2013-04-03doc: Rewrite task tutorial introBrian Anderson-39/+28
It doesn't quite reflect reality
2013-04-03auto merge of #5710 : ajuckel/rust/patch-1, r=luqmanabors-1/+1
One word typo fix
2013-04-03Simple typo fixAnthony Juckel-1/+1
2013-04-03One more typo: dubug -> debugSteve Klabnik-1/+1
2013-04-03Update tut. to not sound like I missed a sectionBrett Cannon-1/+1
The sentence "Remember that `(float, float)` is a tuple of two floats" sounds like you've already read a section on tuples, but that section comes later. Changing it to "Assuming that ..." makes it more about taking the writer's word that the syntax is how tuples are defined.
2013-04-03typo fix: na -> anSteve Klabnik-1/+1
2013-04-03Add information about logging macros to the tutorial.Steve Klabnik-0/+22
Closes #5699.
2013-04-03rename Linear{Map,Set} => Hash{Map,Set}Daniel Micay-4/+4
2013-04-03hashmap: rm linear namespaceDaniel Micay-2/+2
2013-04-01auto merge of #5669 : graydon/rust/tweaks, r=thestingerbors-5/+5
Just some minor cleanup of version strings and copyrights.
2013-04-01tidy version numbers and copyright datesGraydon Hoare-5/+5
2013-04-01auto merge of #5662 : catamorphism/rust/docs, r=catamorphismbors-1/+99
r? @brson
2013-04-01docs: Xfail test, it's just for illustration anywayTim Chevalier-2/+2
2013-04-01doc: Update tutorial description of coreBrian Anderson-23/+59
2013-04-01docs: Document language items, as per #3342Tim Chevalier-1/+99
2013-03-31Update tutorial.mdLuqman Aden-2/+2
Change fn() -> &fn().
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-16/+16
2013-03-29auto merge of #5624 : thestinger/rust/tutorial, r=pcwaltonbors-13/+73
2013-03-29tutorial: add an example of freezing a managed boxDaniel Micay-4/+15
2013-03-29tutorial: improve the managed boxes sectionDaniel Micay-0/+14
2013-03-29tutorial: improve the owned boxes sectionDaniel Micay-5/+40
2013-03-29tutorial: use "owned box" consistentlyDaniel Micay-4/+4
2013-03-29auto merge of #5583 : jbclements/rust/docfix-for-block-comment-grammar, ↵bors-4/+4
r=jbclements ... by adding Kleene '+' in two places, and changing a "non-slash" into "non_slash_or_star". Closes #1588
2013-03-29auto merge of #5570 : alexcrichton/rust/fix-unused-imports, r=sanxiynbors-3/+3
Before it wouldn't warn about unused imports in the list if something in the list was used. These commits fix that case, add a test, and remove all unused imports in lists of imports throughout the compiler.
2013-03-28Removing unused importsAlex Crichton-3/+3
2013-03-28tutorial: only Owned types can have a Drop implDaniel Micay-1/+3
2013-03-28tutorial: cleaner libc use statementsDaniel Micay-5/+2
2013-03-28added defn of non_slash_or_starJohn Clements-2/+2
2013-03-28fix another subtle bug in comment regexJohn Clements-2/+2
2013-03-27fixes stated grammar for block comments, by adding Kleene '+' in two places.John Clements-2/+2
Closes #1588
2013-03-26test: Fix testsPatrick Walton-8/+8
2013-03-26librustc: Modify all code to use new lifetime binder syntaxPatrick Walton-11/+11
2013-03-26doc: Remove mentions of oldmap::HashMapAlex Crichton-5/+5
2013-03-26auto merge of #5549 : brson/rust/rustdoc, r=brsonbors-0/+5
r?
2013-03-26rustdoc: Tweak list styleBrian Anderson-0/+5
2013-03-26Updated to reflect alpha-rename of constant/static items section.Felix S. Klock II-4/+2
2013-03-26Miscellaneous documentation additions.Felix S. Klock II-1/+33
Added notes explaining how [expr, ..expr] form is used, targeted at individuals like me who thought it was more general and handled dynamic repeat expressions. (I left a TODO for this section in a comment, but perhaps that is bad form for the manual...) Added example of `do` syntax with a function of arity > 1; yes, one should be able to derive this from the text above it, but it is still a useful detail to compare and contrast against the arity == 1 case. Added example of using for expression over a uint range, since someone who is most used to write `for(int i; i < lim; i++) { ... }` will likely want to know how to translate that form (regardless of whether it happens to be good style or not for their use-case). Added note about the semi-strange meaning of "fixed size" of vectors in the vector type section.
2013-03-25auto merge of #5507 : graydon/rust/fixups2, r=graydonbors-21/+22
Just some editing-to-reflect-reality on release notes and manual.
2013-03-25docs: update to avoid mention of const.Graydon Hoare-21/+22
2013-03-25auto merge of #5505 : catamorphism/rust/macro-tutorial, r=graydonbors-23/+27
r? @jbclements
2013-03-22libcore: Fix obsolete syntax in extfmtPatrick Walton-36/+30
2013-03-22Copyedit macro tutorialTim Chevalier-23/+27
2013-03-22docs: Copyedit my randomly assigned sections of the manualTim Chevalier-132/+143
2013-03-21Tutorial: make struct section more coherentLuca Bruno-9/+18
In struct section of tutorial, make everything more coherent and clear by always using "struct Point". Also, do not prematurely introduce pointers and arrays. Fixes #5240 Signed-off-by: Luca Bruno <lucab@debian.org>
2013-03-19rewrite the tutorial section on boxesDaniel Micay-130/+160