Skip to content
Closed
Changes from 2 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b5a3f56
Update musl to 1.1.18
malbarbo Jan 8, 2018
b1c9b6e
Update jobserver to 0.1.9
cuviper Jan 9, 2018
a713c67
Skip linker-output-non-utf8 test on Apple
etaoins Jan 9, 2018
7b420cf
Treat #[path] files as mod.rs files
cramertj Jan 9, 2018
4cc0fe5
Restore the original Window comment
etaoins Jan 9, 2018
b69c320
Fix typo
etaoins Jan 9, 2018
ce4673d
Use copy/clone closures to simplify calendar test
cramertj Jan 10, 2018
d0d5db6
fix typo rwlock.rs
bmusin Jan 10, 2018
00ce7ee
resolve type and region variables in "NLL dropck"
nikomatsakis Jan 10, 2018
44912bf
Pre-allocate in fs::read and fs::read_string
mbrubeck Jan 10, 2018
c78679d
Fix panic strings.
dlrobertson Jan 10, 2018
3f9c057
Use the new fs_read_write functions in rustc internals
mbrubeck Jan 10, 2018
9d9504a
Fix typo.
Jan 10, 2018
9649c4a
Add tests to fixed issues.
topecongiro Jan 11, 2018
b5b18b5
Rollup merge of #47283 - malbarbo:musl-1.1.18, r=alexcrichton
kennytm Jan 11, 2018
904ee5e
Rollup merge of #47288 - cuviper:jobserver-pipe2, r=alexcrichton
kennytm Jan 11, 2018
306661d
Rollup merge of #47289 - etaoins:skip-linker-output-non-utf8-test-on-…
kennytm Jan 11, 2018
530c155
Rollup merge of #47298 - cramertj:path-as-modrs, r=nikomatsakis
kennytm Jan 11, 2018
e31a02a
Rollup merge of #47305 - cramertj:better-calendar-alone, r=eddyb
kennytm Jan 11, 2018
505718d
Rollup merge of #47307 - dlrobertson:fix_panic_strings, r=kennytm
kennytm Jan 11, 2018
e8bb17b
Rollup merge of #47310 - bmusin:patch-1, r=sfackler
kennytm Jan 11, 2018
e933088
Rollup merge of #47322 - nikomatsakis:nll-ice, r=pnkfelix
kennytm Jan 11, 2018
4e019fd
Rollup merge of #47324 - mbrubeck:len, r=sfackler
kennytm Jan 11, 2018
0e83b70
Rollup merge of #47328 - mbrubeck:fs_read, r=sfackler
kennytm Jan 11, 2018
3a87b5a
Rollup merge of #47340 - alercah:typo-fix, r=GuillaumeGomez
kennytm Jan 11, 2018
5bd7d69
Rollup merge of #47344 - topecongiro:fixed-ices, r=alexcrichton
kennytm Jan 11, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/libstd/sync/rwlock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ use sys_common::rwlock as sys;
/// required that `T` satisfies [`Send`] to be shared across threads and
/// [`Sync`] to allow concurrent access through readers. The RAII guards
/// returned from the locking methods implement [`Deref`][] (and [`DerefMut`]
/// for the `write` methods) to allow access to the contained of the lock.
/// for the `write` methods) to allow access to the content of the lock.
///
/// # Poisoning
///
Expand Down