| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-03-27 | Rollup merge of #49401 - alercah:format, r=cramertj | kennytm | -7/+8 | |
| Add missing '?' to format grammar. | ||||
| 2018-03-26 | Add missing '?' to format grammar. | Alexis Hunt | -7/+8 | |
| 2018-03-19 | Docs: fix incorrect copy-paste for new `X?` in formatting strings | Simon Sapin | -1/+1 | |
| 2018-03-13 | Add hexadecimal formatting of integers with fmt::Debug | Simon 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-22 | Adding `eprint*!` to the list of macros in the `format!` family | David Alber | -0/+10 | |
| 2017-11-21 | fix some typos | Martin Lindhe | -1/+1 | |
| 2017-11-20 | Fix some docs summary nits | Marco A L Barbosa | -1/+1 | |
| 2017-10-20 | Fix most rendering warnings from switching to CommonMark | steveklabnik | -1/+0 | |
| 2017-08-18 | Add missing url for fmt module | Guillaume Gomez | -1/+1 | |
| 2017-08-12 | Add missing link in fmt::format function | Guillaume Gomez | -20/+22 | |
| 2017-08-11 | Add (a lot of) missing links in fmt module docs | Guillaume Gomez | -32/+55 | |
| 2017-06-29 | Rollup merge of #42832 - rthomas:doc-fmt, r=steveklabnik | Ariel 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-23 | Removed 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-22 | Update 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-13 | Merge crate `collections` into `alloc` | Murarth | -0/+535 | |
