Skip to content

Commit b769c26

Browse files
committed
---
yaml --- r: 206845 b: refs/heads/beta c: 222cd73 h: refs/heads/master i: 206843: b41afe2 v: v3
1 parent 14f1f30 commit b769c26

File tree

111 files changed

+4059
-1165
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+4059
-1165
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
2929
refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
3030
refs/heads/batch: b7fd822592a4fb577552d93010c4a4e14f314346
3131
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
32-
refs/heads/beta: 36eb09f356ef49e94dc367467325fce6048273c8
32+
refs/heads/beta: 222cd73b8a422d2c4124375f6aaffd2663bb9718
3333
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
3434
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
3535
refs/heads/tmp: 579e31929feff51dcaf8d444648eff8de735f91a

branches/beta/AUTHORS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -736,6 +736,7 @@ Rob Hoelz <[email protected]>
736736
Robert Buonpastore <[email protected]>
737737
Robert Clipsham <[email protected]>
738738
Robert Gawdzik <[email protected]>
739+
Robert Foss <[email protected]>
739740
Robert Irelan <[email protected]>
740741
Robert Knight <[email protected]>
741742
Robert Millar <[email protected]>

branches/beta/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,11 @@ fetch snapshots, and an OS that can execute the available snapshot binaries.
8787

8888
Snapshot binaries are currently built and tested on several platforms:
8989

90-
* Windows (7, 8, Server 2008 R2), x86 and x86-64 (64-bit support added in Rust 0.12.0)
91-
* Linux (2.6.18 or later, various distributions), x86 and x86-64
92-
* OSX 10.7 (Lion) or greater, x86 and x86-64
90+
| Platform \ Architecture | x86 | x86_64 |
91+
|--------------------------------|-----|--------|
92+
| Windows (7, 8, Server 2008 R2) |||
93+
| Linux (2.6.18 or later) |||
94+
| OSX (10.7 Lion or later) |||
9395

9496
You may find that other platforms work, but these are our officially
9597
supported build environments that are most likely to work.

branches/beta/src/doc/index.md

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,14 @@ to jump to any particular section.
55

66
# Getting Started
77

8-
If you haven't seen Rust at all yet, the first thing you should read is the [30
9-
minute intro](intro.html). It will give you an overview of the basic ideas of Rust
10-
at a high level.
8+
If you haven't seen Rust at all yet, the first thing you should read is the
9+
introduction to [The Rust Programming Language](book/index.html). It'll give
10+
you a good idea of what Rust is like.
1111

12-
Once you know you really want to learn Rust, the next step is reading [The
13-
Rust Programming Language](book/index.html). It is a lengthy explanation of
14-
Rust, its syntax, and its concepts. Upon completing the book, you'll be an
15-
intermediate Rust developer, and will have a good grasp of the fundamental
16-
ideas behind Rust.
12+
The book provides a lengthy explanation of Rust, its syntax, and its
13+
concepts. Upon completing the book, you'll be an intermediate Rust
14+
developer, and will have a good grasp of the fundamental ideas behind
15+
Rust.
1716

1817
[Rust By Example][rbe] was originally a community resource, but was then
1918
donated to the Rust project. As the name implies, it teaches you Rust through a
@@ -24,7 +23,7 @@ series of small examples.
2423
# Community & Getting Help
2524

2625
If you need help with something, or just want to talk about Rust with others,
27-
there's a few places you can do that:
26+
there are a few places you can do that:
2827

2928
The Rust IRC channels on [irc.mozilla.org](http://irc.mozilla.org/) are the
3029
fastest way to get help.
@@ -59,7 +58,7 @@ the language in as much detail as possible is in [the reference](reference.html)
5958

6059
# Tools
6160

62-
Rust's still a young language, so there isn't a ton of tooling yet, but the
61+
Rust is still a young language, so there isn't a ton of tooling yet, but the
6362
tools we have are really nice.
6463

6564
[Cargo](http://crates.io) is Rust's package manager, and its website contains
@@ -69,16 +68,21 @@ lots of good documentation.
6968

7069
# FAQs
7170

72-
There are questions that are asked quite often, and so we've made FAQs for them:
71+
There are questions that are asked quite often, so we've made FAQs for them:
7372

7473
* [Language Design FAQ](complement-design-faq.html)
7574
* [Language FAQ](complement-lang-faq.html)
7675
* [Project FAQ](complement-project-faq.html)
7776
* [How to submit a bug report](https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports)
7877

79-
# The standard library
78+
# The Standard Library
8079

8180
We have [API documentation for the entire standard
8281
library](std/index.html). There's a list of crates on the left with more
8382
specific sections, or you can use the search bar at the top to search for
8483
something if you know its name.
84+
85+
# The Error Index
86+
87+
If you encounter an error while compiling your code you may be able to look it
88+
up in the [Rust Compiler Error Index](error-index.html).

0 commit comments

Comments
 (0)