Skip to content

Commit 77fd1f5

Browse files
author
Mark Lacey
committed
---
yaml --- r: 34391 b: refs/heads/snap-stage3 c: d94e9c0 h: refs/heads/master i: 34389: 6cb4bab 34387: d7f131b 34383: c186c12 v: v3
1 parent 352a048 commit 77fd1f5

File tree

333 files changed

+1451
-3777
lines changed

Some content is hidden

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

333 files changed

+1451
-3777
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: a933cdfbf16b7a45a61478ea25b89af43079631b
4+
refs/heads/snap-stage3: d94e9c0b0483f8d8eaf5b0c7785368808fd5da1e
55
refs/heads/try: d324a424d8f84b1eb049b12cf34182bda91b0024
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/AUTHORS.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ Arkaitz Jimenez <[email protected]>
1616
Armin Ronacher <[email protected]>
1717
Austin Seipp <[email protected]>
1818
19-
Ben Alpert <[email protected]>
2019
2120
Ben Striegel <[email protected]>
2221
Benjamin Herr <[email protected]>
@@ -50,7 +49,6 @@ Erick Tryzelaar <[email protected]>
5049
Erik Rose <[email protected]>
5150
Evan McClanahan <[email protected]>
5251
Francisco Souza <[email protected]>
53-
Franklin Chen <[email protected]>
5452
5553
Gareth Daniel Smith <[email protected]>
5654
Glenn Willen <[email protected]>
@@ -108,7 +106,6 @@ Patrik Kårlin <[email protected]>
108106
Paul Stansifer <[email protected]>
109107
Paul Woolcock <[email protected]>
110108
Peter Hull <[email protected]>
111-
Peter Williams <[email protected]>
112109
Philipp Brüschweiler <[email protected]>
113110
Rafael Ávila de Espíndola <[email protected]>
114111
Ralph Giles <[email protected]>
@@ -122,7 +119,6 @@ Sean Stangl <[email protected]>
122119
Simon Barber-Dueck <[email protected]>
123120
startling <[email protected]>
124121
Stefan Plantikow <[email protected]>
125-
Steve Klabnik <[email protected]>
126122
Taras Shpot <[email protected]>
127123
Ted Horst <[email protected]>
128124
Tim Chevalier <[email protected]>

branches/snap-stage3/CONTRIBUTING.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

branches/snap-stage3/README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,10 @@ API-documentation tool, and `cargo`, the Rust package manager.
6565

6666
## License
6767

68-
Rust is primarily distributed under the terms of both the MIT license
69-
and the Apache License (Version 2.0), with portions covered by various
70-
BSD-like licenses.
68+
Rust is primarily distributed under the terms of the MIT license, with
69+
portions covered by various BSD-like licenses.
7170

72-
See LICENSE-APACHE, LICENSE-MIT, and COPYRIGHT for details.
71+
See LICENSE.txt for details.
7372

7473
## More help
7574

branches/snap-stage3/doc/rust.md

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1107,19 +1107,6 @@ let mut a: Animal = Dog;
11071107
a = Cat;
11081108
~~~~
11091109

1110-
Enumeration constructors can have either named or unnamed fields:
1111-
~~~~
1112-
enum Animal {
1113-
Dog (~str, float),
1114-
Cat { name: ~str, weight: float }
1115-
}
1116-
1117-
let mut a: Animal = Dog(~"Cocoa", 37.2);
1118-
a = Cat{ name: ~"Spotty", weight: 2.7 };
1119-
~~~~
1120-
1121-
In this example, `Cat` is a _struct-like enum variant_,
1122-
whereas `Dog` is simply called an enum variant.
11231110
### Constants
11241111

11251112
~~~~~~~~ {.ebnf .gram}
@@ -3258,12 +3245,12 @@ crate name the crate is given a default name that matches the source file,
32583245
with the extension removed. In that case, to turn on logging for a program
32593246
compiled from, e.g. `helloworld.rs`, `RUST_LOG` should be set to `helloworld`.
32603247

3261-
As a convenience, the logging spec can also be set to a special pseudo-crate,
3248+
As a convenience, the logging spec can also be set to a special psuedo-crate,
32623249
`::help`. In this case, when the application starts, the runtime will
32633250
simply output a list of loaded modules containing log expressions, then exit.
32643251

32653252
The Rust runtime itself generates logging information. The runtime's logs are
3266-
generated for a number of artificial modules in the `::rt` pseudo-crate,
3253+
generated for a number of artificial modules in the `::rt` psuedo-crate,
32673254
and can be enabled just like the logs for any standard module. The full list
32683255
of runtime logging modules follows.
32693256

@@ -3341,7 +3328,7 @@ have come and gone during the course of Rust's development:
33413328

33423329
* The Newsqueak (1988), Alef (1995), and Limbo (1996) family. These
33433330
languages were developed by Rob Pike, Phil Winterbottom, Sean Dorward and
3344-
others in their group at Bell Labs Computing Sciences Research Center
3331+
others in their group at Bell labs Computing Sciences Research Center
33453332
(Murray Hill, NJ, USA).
33463333

33473334
* The Napier (1985) and Napier88 (1988) family. These languages were

branches/snap-stage3/doc/tutorial-macros.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ macro_rules! early_return(
4343
_ => {}
4444
}
4545
);
46-
)
46+
);
4747
// ...
4848
early_return!(input_1 special_a);
4949
// ...
@@ -160,7 +160,7 @@ macro_rules! early_return(
160160
_ => {}
161161
}
162162
);
163-
)
163+
);
164164
// ...
165165
early_return!(input_1, [special_a|special_c|special_d]);
166166
// ...

0 commit comments

Comments
 (0)