summary refs log tree commit diff
path: root/src/liballoc/fmt.rs
AgeCommit message (Collapse)AuthorLines
2018-03-27Rollup merge of #49401 - alercah:format, r=cramertjkennytm-7/+8
Add missing '?' to format grammar.
2018-03-26Add missing '?' to format grammar.Alexis Hunt-7/+8
2018-03-19Docs: fix incorrect copy-paste for new `X?` in formatting stringsSimon Sapin-1/+1
2018-03-13Add hexadecimal formatting of integers with fmt::DebugSimon Sapin-0/+2
This can be used for integers within a larger types which implements Debug (possibly through derive) but not fmt::UpperHex or fmt::LowerHex. ```rust assert!(format!("{:02x?}", b"Foo\0") == "[46, 6f, 6f, 00]"); assert!(format!("{:02X?}", b"Foo\0") == "[46, 6F, 6F, 00]"); ``` RFC: https://github.com/rust-lang/rfcs/pull/2226
2017-11-22Adding `eprint*!` to the list of macros in the `format!` familyDavid Alber-0/+10
2017-11-21fix some typosMartin Lindhe-1/+1
2017-11-20Fix some docs summary nitsMarco A L Barbosa-1/+1
2017-10-20Fix most rendering warnings from switching to CommonMarksteveklabnik-1/+0
2017-08-18Add missing url for fmt moduleGuillaume Gomez-1/+1
2017-08-12Add missing link in fmt::format functionGuillaume Gomez-20/+22
2017-08-11Add (a lot of) missing links in fmt module docsGuillaume Gomez-32/+55
2017-06-29Rollup merge of #42832 - rthomas:doc-fmt, r=steveklabnikAriel Ben-Yehuda-5/+3
Update docs for std::fmt::format #29355. This rewords and removes the `Arguments` section from the docs for fmt::format. r? @steveklabnik
2017-06-23Removed as many "```ignore" as possible.kennytm-1/+1
Replaced by adding extra imports, adding hidden code (`# ...`), modifying examples to be runnable (sorry Homura), specifying non-Rust code, and converting to should_panic, no_run, or compile_fail. Remaining "```ignore"s received an explanation why they are being ignored.
2017-06-22Update docs for std::fmt::format #29355.Ryan Thomas-5/+3
This rewords and removes the `Arguments` section from the docs for fmt::format. r? @steveklabnik
2017-06-13Merge crate `collections` into `alloc`Murarth-0/+535