Skip to content

Commit 96972dd

Browse files
committed
---
yaml --- r: 52089 b: refs/heads/dist-snap c: 9433284 h: refs/heads/master i: 52087: 9da9157 v: v3
1 parent 253288e commit 96972dd

File tree

91 files changed

+568
-694
lines changed

Some content is hidden

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

91 files changed

+568
-694
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: 96ba9def359abbdf336278982395da0576f69785
10+
refs/heads/dist-snap: 9433284a11920ea3b48ac298c8872fb577eaa44d
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: 0 additions & 3 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]>
@@ -121,7 +119,6 @@ Sean Stangl <[email protected]>
121119
Simon Barber-Dueck <[email protected]>
122120
startling <[email protected]>
123121
Stefan Plantikow <[email protected]>
124-
Steve Klabnik <[email protected]>
125122
Taras Shpot <[email protected]>
126123
Ted Horst <[email protected]>
127124
Tim Chevalier <[email protected]>

branches/dist-snap/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/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 pseudo-crate,
3261+
As a convenience, the logging spec can also be set to a special psuedo-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` pseudo-crate,
3266+
generated for a number of artificial modules in the `::rt` psuedo-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)