Skip to content

Commit e6da343

Browse files
committed
---
yaml --- r: 52090 b: refs/heads/dist-snap c: 587ce48 h: refs/heads/master v: v3
1 parent 96972dd commit e6da343

File tree

90 files changed

+693
-557
lines changed

Some content is hidden

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

90 files changed

+693
-557
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
99
refs/heads/incoming: 44d4d6de762f3f9aae1fedcf454c66b79b3ad58d
10-
refs/heads/dist-snap: 9433284a11920ea3b48ac298c8872fb577eaa44d
10+
refs/heads/dist-snap: 587ce4894e0a4b2b785b7b5e803e7ab4c9241258
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1313
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/AUTHORS.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Arkaitz Jimenez <[email protected]>
1616
Armin Ronacher <[email protected]>
1717
Austin Seipp <[email protected]>
1818
19+
Ben Alpert <[email protected]>
1920
2021
Ben Striegel <[email protected]>
2122
Benjamin Herr <[email protected]>
@@ -49,6 +50,7 @@ Erick Tryzelaar <[email protected]>
4950
Erik Rose <[email protected]>
5051
Evan McClanahan <[email protected]>
5152
Francisco Souza <[email protected]>
53+
Franklin Chen <[email protected]>
5254
5355
Gareth Daniel Smith <[email protected]>
5456
Glenn Willen <[email protected]>
@@ -119,6 +121,7 @@ Sean Stangl <[email protected]>
119121
Simon Barber-Dueck <[email protected]>
120122
startling <[email protected]>
121123
Stefan Plantikow <[email protected]>
124+
Steve Klabnik <[email protected]>
122125
Taras Shpot <[email protected]>
123126
Ted Horst <[email protected]>
124127
Tim Chevalier <[email protected]>

branches/dist-snap/README.md

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

6666
## License
6767

68-
Rust is primarily distributed under the terms of the MIT license, with
69-
portions covered by various BSD-like licenses.
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.
7071

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

7374
## More help
7475

branches/dist-snap/doc/rust.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3258,12 +3258,12 @@ crate name the crate is given a default name that matches the source file,
32583258
with the extension removed. In that case, to turn on logging for a program
32593259
compiled from, e.g. `helloworld.rs`, `RUST_LOG` should be set to `helloworld`.
32603260

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

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

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

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

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

branches/dist-snap/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)