summary refs log tree commit diff
path: root/doc/tutorial.md
AgeCommit message (Collapse)AuthorLines
2012-12-20tutorial: Discuss argument patternsBrian Anderson-0/+24
2012-12-20tutorial: Clarify description of trait inheritanceBrian Anderson-3/+5
2012-12-20tutorial: Fix broken examplesBrian Anderson-2/+2
2012-12-20tutorial: Re-remove core:: prefix from some examplesBrian Anderson-4/+4
2012-12-20tutorial: TypoBrian Anderson-1/+1
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-3/+31
/cc: #4217
2012-12-19doc: Mention tuple structsTim Chevalier-0/+16
/cc: #4217
2012-12-19docs: mention static methodsTim Chevalier-0/+26
/cc #4217
2012-12-19Update docs to mention trait constraints; also fix failing doc testsTim Chevalier-0/+33
/cc #4217
2012-12-19Bump version numbers in docsBrian Anderson-5/+5
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-15Update docs for crate file changesBrian Anderson-29/+29
2012-12-13Update docs for kind name changesBrian Anderson-4/+4
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
2012-12-10Tutorial typo fixesLindsey Kuper-3/+3
2012-11-29Fix tutorial's use of DropBrian Anderson-1/+1
2012-11-26Fix sample code in the tutorialDamien Grassart-1/+2
2012-11-24[tutorial] Use a less confusing closure exampleTim Chevalier-2/+1
Closes #3996
2012-11-11Minor grammatical edits; use preferred nomenclature consistently.Cat's Eye Technologies-17/+17
2012-11-07rustc: Implement the Drop trait. r=brsonPatrick Walton-21/+24
2012-10-23Remove remaining mentions of <- from docsTim Chevalier-5/+0
2012-10-17Extraneous sigil patrol: turn &[] literals into []Ben Striegel-6/+6
2012-10-17Sigil patrol: change fn@ fn& fn~ to @fn &fn ~fnBen Striegel-25/+11
This also involves removing references to the old long-form closure syntax, which pcwalton alleges is deprecated and which was never updated for the new forms, e.g. `@fn() {}` is illegal.