about summary refs log tree commit diff
path: root/doc
AgeCommit message (Collapse)AuthorLines
2012-12-20tutorial: Clean up language about syntax extensionsBrian Anderson-2/+2
2012-12-20tutorial: Try to fit the early discussion of :: in betterBrian Anderson-12/+8
2012-12-20tutorial: Remove some trivia about operatorsBrian Anderson-5/+0
2012-12-20tutorial: EditingBrian Anderson-2/+2
2012-12-20tutorial: Fix example in syntax basics sectionBrian Anderson-1/+1
2012-12-20tutorial: Update scopeBrian Anderson-4/+3
2012-12-20tutorial: Mention rusti with other toolsBrian Anderson-1/+2
2012-12-20tutorial: Discuss the primitive types along with their literalsBrian Anderson-13/+17
2012-12-20tutorial: It doesn't matter that Rust identifiers are the same as CBrian Anderson-1/+1
2012-12-20tutorial: Integrate constants into main intro textBrian Anderson-3/+3
2012-12-20tutorial: Remove the section on constantsBrian Anderson-28/+0
We can mention that constants are declared with 'const' in one line. Don't need an entire section.
2012-12-20tutorial: Remove the entire 'Types' sectionBrian Anderson-81/+0
It's not interesting /cc: #4217
2012-12-20tutorial: Remove mutable vector syntaxBrian Anderson-1/+0
2012-12-20tutorial: Remove confusing discussion about semicolonsBrian Anderson-40/+0
This takes up a lot of words and isn't very clear. The previous discussion gets they idea across. /cc: #4217
2012-12-20tutorial: Fix formattingBrian Anderson-1/+1
2012-12-20tutorial: update introBrian Anderson-2/+2
2012-12-20tutorial: Update for moves based on typeBrian Anderson-19/+9
/cc: #4217
2012-12-20tutorial: TyposBrian Anderson-2/+2
2012-12-20tutorial: Move method discussion after closures, before genericsBrian Anderson-139/+136
/cc: #4217
2012-12-20Move mast static method to the section on methodsBrian Anderson-26/+53
/cc: #4217
2012-12-20Use explicit self in rest of tutorialBrian Anderson-44/+45
/cc: #4217
2012-12-20tutorial: Rewrite method section to deal with explicit selfBrian Anderson-47/+110
Has to be moved until after the pointer discussion. /cc: #4217
2012-12-20tutorial: Reorder sections on traitsBrian Anderson-82/+82
/cc: #4217
2012-12-20doc: 'trait constraints' -> 'inheritance'. ExpandBrian Anderson-4/+59
/cc: #4217
2012-12-20doc: describe the Drop trait. cc: #4217Graydon Hoare-0/+10
2012-12-19doc: Mention tuple structsTim Chevalier-1/+37
/cc: #4217
2012-12-19docs: mention static methodsTim Chevalier-2/+43
/cc #4217
2012-12-19Update docs to mention trait constraints; also fix failing doc testsTim Chevalier-3/+51
/cc #4217
2012-12-19Bump version numbers in docsBrian Anderson-5/+5
2012-12-19doc: structure expressions. cc: #4217Graydon Hoare-2/+37
2012-12-19doc: mention moved and copied types. cc: #4217Graydon Hoare-3/+15
2012-12-19Fix doc typoIsaac Aggrey-1/+1
2012-12-18'trait instance' -> 'object'Brian Anderson-3/+3
2012-12-18Update tutorial on generics. #4217Brian Anderson-21/+19
2012-12-18doc: a little more material on object types, part of #4217.Graydon Hoare-8/+19
2012-12-16Add a section to the macro tutorial about recursive macros.Paul Stansifer-1/+191
2012-12-16Reword some things in the macro tutorial.Paul Stansifer-8/+9
2012-12-15Update docs for crate file changesBrian Anderson-99/+79
2012-12-14Display the full TOC in the manual. Closes #4194Brian Anderson-0/+6
2012-12-14Fix broken testsBrian Anderson-63/+3
2012-12-14[docs] Note that types and modules share the same namespaceTim Chevalier-0/+4
2012-12-14Remove spawn_listener, spawn_conversationBrian Anderson-1/+1
These are not needed in a pipe-based Rustiverse
2012-12-13Merge pull request #4181 from andrew-d/andrew-doc-fix1Brian Anderson-4/+4
Fix example in docs
2012-12-13Rename "to_str" to "make_string" in the docsAndrew Dunham-4/+4
There's already a "to_str" impl for string, so it fails here.
2012-12-13Update docs for kind name changesBrian Anderson-10/+10
2012-12-12Document pub use foo::* in the reference manualTim Chevalier-0/+15
r=brson Closes #3788
2012-12-12Fix tasks tutorial testsTim Chevalier-9/+9
2012-12-11doc: add missing decls to example, r=burningtree.Graydon Hoare-0/+2
2012-12-11Discuss module syntax earlier in the tutorialTim Chevalier-0/+5
as per #3578
2012-12-11Discuss the Option type a bit in the tutorialTim Chevalier-4/+19
as per #3577