Skip to content

Commit 801b997

Browse files
committed
---
yaml --- r: 38268 b: refs/heads/try c: 587ce48 h: refs/heads/master v: v3
1 parent 92db185 commit 801b997

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
@@ -2,7 +2,7 @@
22
refs/heads/master: 09bb07bed9166105ea961a42b5fff7739ae0d2e9
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: eb8fd119c65c67f3b1b8268cc7341c22d39b7b61
5-
refs/heads/try: 9433284a11920ea3b48ac298c8872fb577eaa44d
5+
refs/heads/try: 587ce4894e0a4b2b785b7b5e803e7ab4c9241258
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278

branches/try/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/try/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/try/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/try/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)