Skip to content

Commit 3c77b6f

Browse files
author
Jorge Aparicio
committed
---
yaml --- r: 179410 b: refs/heads/snap-stage3 c: 571cc7f h: refs/heads/master v: v3
1 parent 259e1bf commit 3c77b6f

File tree

203 files changed

+801
-802
lines changed

Some content is hidden

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

203 files changed

+801
-802
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: 0ba9e1fa52627404a1e5b90f745f96a872a0c564
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 2bd8ec2d197809fc0f0efccf1de14419ffb17b2b
4+
refs/heads/snap-stage3: 571cc7f8e98da46735a5728387c768cde75d010c
55
refs/heads/try: ccf8fedf1cffcb8f6f3581d53d220039e192fe77
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d

branches/snap-stage3/man/rustc.1

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,10 @@ Display the help message
1818
\fB\-\-cfg\fR SPEC
1919
Configure the compilation environment
2020
.TP
21-
\fB\-L\fR [KIND=]PATH
22-
Add a directory to the library search path. The optional KIND can be one of:
23-
dependency = only lookup transitive dependencies here
24-
crate = only lookup local `extern crate` directives here
25-
native = only lookup native libraries here
26-
framework = only look for OSX frameworks here
27-
all = look for anything here (the default)
28-
.TP
29-
\fB\-l\fR [KIND=]NAME
21+
\fB\-L\fR PATH
22+
Add a directory to the library search path
23+
.TP
24+
\fB\-l\fR NAME[:KIND]
3025
Link the generated crate(s) to the specified native library NAME. The optional
3126
KIND can be one of, static, dylib, or framework. If omitted, dylib is assumed.
3227
.TP

branches/snap-stage3/src/compiletest/compiletest.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ pub fn make_metrics_test_closure(config: &Config, testfile: &Path) -> test::Test
359359
let config = (*config).clone();
360360
// FIXME (#9639): This needs to handle non-utf8 paths
361361
let testfile = testfile.as_str().unwrap().to_string();
362-
test::DynMetricFn(box move |: mm: &mut test::MetricMap| {
362+
test::DynMetricFn(box move |mm: &mut test::MetricMap| {
363363
runtest::run_metrics(config, testfile, mm)
364364
})
365365
}

branches/snap-stage3/src/doc/trpl/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* [Iterators](iterators.md)
2828
* [Generics](generics.md)
2929
* [Traits](traits.md)
30-
* [Concurrency](concurrency.md)
30+
* [Threads](threads.md)
3131
* [Error Handling](error-handling.md)
3232
* [Documentation](documentation.md)
3333
* [III: Advanced Topics](advanced.md)

0 commit comments

Comments
 (0)