Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
fc1ae1a
std: Update wasi-libc commit of the wasm32-wasi target
alexcrichton Nov 30, 2020
3ea744e
Recommend panic::resume_unwind instead of panicking.
frewsxcv Dec 18, 2020
1f9a8a1
Add a `std::io::read_to_string` function
camelid Nov 5, 2020
4ee6d1b
Add description independent of `Read::read_to_string`
camelid Dec 30, 2020
588786a
Add error docs
camelid Dec 30, 2020
a398106
Remove unreachable panics from VecDeque
bugadani Jan 9, 2021
7463292
Add docs on performance
camelid Jan 12, 2021
c3f7429
Use better ICE message when no MIR is available
camelid Jan 13, 2021
7e83fec
remove unstable deprecated Vec::remove_item
KodrAus Jan 13, 2021
6bfd987
Update books
ehuss Jan 13, 2021
d65cb6e
deprecate atomic::spin_loop_hint in favour of hint::spin_loop
KodrAus Jan 13, 2021
697b20f
Fixed incorrect doc comment
trevarj Jan 13, 2021
52adfdd
Use Option::map_or instead of `.map(..).unwrap_or(..)`
LingMan Jan 11, 2021
64c1b0d
Fix -Cpasses=list and llvm version print with -vV
bjorn3 Jan 13, 2021
b59fa3d
Fix stabilisation version of slice_strip
ijackson Jan 13, 2021
c0c607c
Deprecate-in-future the constants superceded by RFC 2700
bstrie Jan 10, 2021
0342fd1
Remove the unused context from CreateDebugLocation
cuviper Jan 13, 2021
1079d6a
Rollup merge of #79578 - alexcrichton:update-waasi, r=KodrAus
JohnTitor Jan 14, 2021
574d39c
Rollup merge of #80169 - frewsxcv:frewsxcv-docs-fix, r=jyn514
JohnTitor Jan 14, 2021
de67458
Rollup merge of #80217 - camelid:io-read_to_string, r=m-ou-se
JohnTitor Jan 14, 2021
7d2e6f1
Rollup merge of #80834 - bugadani:vecdeque, r=oli-obk
JohnTitor Jan 14, 2021
3e42020
Rollup merge of #80944 - LingMan:map_or, r=nagisa
JohnTitor Jan 14, 2021
3a22854
Rollup merge of #80958 - bstrie:deptbdnums, r=KodrAus
JohnTitor Jan 14, 2021
74931ff
Rollup merge of #80966 - KodrAus:deprecate/spin_loop_hint, r=m-ou-se
JohnTitor Jan 14, 2021
22502bd
Rollup merge of #80969 - camelid:monomorph-ice-msg, r=nagisa
JohnTitor Jan 14, 2021
a3ce456
Rollup merge of #80972 - KodrAus:deprecate/remove_item, r=nagisa
JohnTitor Jan 14, 2021
9da1a53
Rollup merge of #80973 - ehuss:update-books, r=ehuss
JohnTitor Jan 14, 2021
5322ace
Rollup merge of #80980 - trevarj:patch-1, r=nagisa
JohnTitor Jan 14, 2021
87f94f2
Rollup merge of #80981 - bjorn3:bjorn3-patch-1, r=jonas-schievink
JohnTitor Jan 14, 2021
998bc58
Rollup merge of #80985 - ijackson:slice-strip-fix, r=jyn514
JohnTitor Jan 14, 2021
800aa61
Rollup merge of #80990 - cuviper:unused-debug-context, r=nagisa
JohnTitor Jan 14, 2021
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
Prev Previous commit
Next Next commit
Fixed incorrect doc comment
">" is right alignment, not left
  • Loading branch information
trevarj authored Jan 13, 2021
commit 697b20ff08f98fff289ef9a861ac9dea5e7f9314
2 changes: 1 addition & 1 deletion library/core/src/fmt/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1555,7 +1555,7 @@ impl<'a> Formatter<'a> {
/// }
/// }
///
/// // We set alignment to the left with ">".
/// // We set alignment to the right with ">".
/// assert_eq!(&format!("{:G>3}", Foo), "GGG");
/// assert_eq!(&format!("{:t>6}", Foo), "tttttt");
/// ```
Expand Down