Skip to content

Tutorial additions, restructuring, simplification #4240

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 26 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
6a778ca
doc: 'trait constraints' -> 'inheritance'. Expand
brson Dec 20, 2012
8795e8b
tutorial: Reorder sections on traits
brson Dec 20, 2012
4cc8877
tutorial: Rewrite method section to deal with explicit self
brson Dec 20, 2012
68b80e4
Use explicit self in rest of tutorial
brson Dec 20, 2012
cad30a2
Move mast static method to the section on methods
brson Dec 20, 2012
0617708
tutorial: Move method discussion after closures, before generics
brson Dec 20, 2012
d468893
tutorial: Typos
brson Dec 20, 2012
0a7bd78
tutorial: Update for moves based on type
brson Dec 20, 2012
7ec45b6
tutorial: update intro
brson Dec 20, 2012
91895ad
tutorial: Fix formatting
brson Dec 20, 2012
614629a
tutorial: Remove confusing discussion about semicolons
brson Dec 20, 2012
ecd1aa7
tutorial: Remove mutable vector syntax
brson Dec 20, 2012
4855ce1
tutorial: Remove the entire 'Types' section
brson Dec 20, 2012
8ea7682
tutorial: Remove the section on constants
brson Dec 20, 2012
685b6fb
tutorial: Integrate constants into main intro text
brson Dec 20, 2012
41aee4d
tutorial: It doesn't matter that Rust identifiers are the same as C
brson Dec 20, 2012
42f37e0
tutorial: Discuss the primitive types along with their literals
brson Dec 20, 2012
e971595
tutorial: Mention rusti with other tools
brson Dec 20, 2012
89caa31
tutorial: Update scope
brson Dec 20, 2012
1b2af16
tutorial: Fix example in syntax basics section
brson Dec 20, 2012
51c8ba0
tutorial: Editing
brson Dec 20, 2012
28aae89
tutorial: Remove some trivia about operators
brson Dec 20, 2012
a9bb1c9
tutorial: Try to fit the early discussion of :: in better
brson Dec 20, 2012
993b724
tutorial: Clean up language about syntax extensions
brson Dec 20, 2012
3113b73
tutorial: Typo
brson Dec 20, 2012
44130c1
tutorial: Re-remove core:: prefix from some examples
brson Dec 20, 2012
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
tutorial: Remove mutable vector syntax
  • Loading branch information
brson committed Dec 20, 2012
commit ecd1aa75eb2bc64d65596b90e2ff8841ae63d2ea
1 change: 0 additions & 1 deletion doc/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,6 @@ while N should be a literal number):

------------------------- -----------------------------------------------
`[T * N]` Vector (like an array in other languages) with N elements
`[mut T * N]` Mutable vector with N elements
`(T1, T2)` Tuple type; any arity above 1 is supported
`&T`, `~T`, `@T` [Pointer types](#boxes-and-pointers)
------------------------- -----------------------------------------------
Expand Down