<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libcore/fmt, branch 1.37.0</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.37.0</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.37.0'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2019-06-22T23:30:41+00:00</updated>
<entry>
<title>Fix meta-variable binding errors in macros</title>
<updated>2019-06-22T23:30:41+00:00</updated>
<author>
<name>Julien Cretin</name>
<email>cretin@google.com</email>
</author>
<published>2019-05-29T18:05:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=b8106b59d2faaea57301ad000d7787b70c5b2985'/>
<id>urn:sha1:b8106b59d2faaea57301ad000d7787b70c5b2985</id>
<content type='text'>
The errors are either:
- The meta-variable used in the right-hand side is not bound (or defined) in the
  left-hand side.
- The meta-variable used in the right-hand side does not repeat with the same
  kleene operator as its binder in the left-hand side. Either it does not repeat
  enough, or it uses a different operator somewhere.

This change should have no semantic impact.
</content>
</entry>
<entry>
<title>Fix data types indication</title>
<updated>2019-05-19T13:51:46+00:00</updated>
<author>
<name>VeryTastyTomato</name>
<email>VeryTastyTomato@users.noreply.github.com</email>
</author>
<published>2019-05-19T13:51:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a759565763c51ed856937d3a8b520d26e5270ba2'/>
<id>urn:sha1:a759565763c51ed856937d3a8b520d26e5270ba2</id>
<content type='text'>
Fix the data types indication in basic examples of the Trait std::fmt::LowerExp and std::fmt::UpperExp.
Since there aren’t any type annotation on the let statement using the number 42.0, they are of type f64 according to The Book:
https://doc.rust-lang.org/book/ch03-02-data-types.html#floating-point-types</content>
</entry>
<entry>
<title>libcore: deny more...</title>
<updated>2019-04-18T23:37:12+00:00</updated>
<author>
<name>Mazdak Farrokhzad</name>
<email>twingoow@gmail.com</email>
</author>
<published>2019-04-18T23:37:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=dbfbadeac4f593e31bbcb57bc7c3b1d17ab1cd65'/>
<id>urn:sha1:dbfbadeac4f593e31bbcb57bc7c3b1d17ab1cd65</id>
<content type='text'>
</content>
</entry>
<entry>
<title>libcore =&gt; 2018</title>
<updated>2019-04-18T05:47:35+00:00</updated>
<author>
<name>Taiki Endo</name>
<email>te316e89@gmail.com</email>
</author>
<published>2019-04-15T02:23:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=360432f1e8794de58cd94f34c9c17ad65871e5b5'/>
<id>urn:sha1:360432f1e8794de58cd94f34c9c17ad65871e5b5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Include trailing comma in multiline Debug representation</title>
<updated>2019-04-05T13:45:40+00:00</updated>
<author>
<name>David Tolnay</name>
<email>dtolnay@gmail.com</email>
</author>
<published>2019-04-03T14:30:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=cfd31fb4df214ab84a917ba9afd148ed13d01a3a'/>
<id>urn:sha1:cfd31fb4df214ab84a917ba9afd148ed13d01a3a</id>
<content type='text'>
This commit changes the behavior of Formatter::debug_struct,
debug_tuple, debug_list, debug_set, and debug_map to render trailing
commas in {:#?} mode, which is the dominant style in modern Rust code.

Before:

    Language {
        name: "Rust",
        trailing_commas: false
    }

After:

    Language {
        name: "Rust",
        trailing_commas: true,
    }
</content>
</entry>
<entry>
<title>adjust MaybeUninit API to discussions</title>
<updated>2019-03-26T08:21:32+00:00</updated>
<author>
<name>Ralf Jung</name>
<email>post@ralfj.de</email>
</author>
<published>2019-03-18T21:45:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0e0383abc6d1f7d1edc456f66a2e3f4082e9a0a8'/>
<id>urn:sha1:0e0383abc6d1f7d1edc456f66a2e3f4082e9a0a8</id>
<content type='text'>
uninitialized -&gt; uninit
into_initialized -&gt; assume_init
read_initialized -&gt; read
set -&gt; write
</content>
</entry>
<entry>
<title>avoid unnecessary use of MaybeUninit::get_ref, and expand comment on the others</title>
<updated>2019-02-22T22:05:58+00:00</updated>
<author>
<name>Ralf Jung</name>
<email>post@ralfj.de</email>
</author>
<published>2019-02-22T21:47:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=d10366fe27bf1a1e6ab67076bdc268f486abeb88'/>
<id>urn:sha1:d10366fe27bf1a1e6ab67076bdc268f486abeb88</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Rollup merge of #58538 - GuillaumeGomez:fmt-examples, r=Centril</title>
<updated>2019-02-20T03:58:52+00:00</updated>
<author>
<name>kennytm</name>
<email>kennytm@gmail.com</email>
</author>
<published>2019-02-19T17:13:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a68a1c758d288a9aabec5e1f2fdb6ae1e4c8ae19'/>
<id>urn:sha1:a68a1c758d288a9aabec5e1f2fdb6ae1e4c8ae19</id>
<content type='text'>
Add missing fmt structs examples

r? @rust-lang/docs
</content>
</entry>
<entry>
<title>Add missing fmt structs examples</title>
<updated>2019-02-19T10:20:00+00:00</updated>
<author>
<name>Guillaume Gomez</name>
<email>guillaume1.gomez@gmail.com</email>
</author>
<published>2019-02-17T14:55:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=31ee20db3e2c776c6b3fab9a3f0c5a89dc465670'/>
<id>urn:sha1:31ee20db3e2c776c6b3fab9a3f0c5a89dc465670</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Rollup merge of #58272 - fitzgen:num-format-code-size, r=Mark-Simulacrum</title>
<updated>2019-02-13T17:12:31+00:00</updated>
<author>
<name>Mazdak Farrokhzad</name>
<email>twingoow@gmail.com</email>
</author>
<published>2019-02-13T17:12:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=c0d507d73b1cc51dd052abe96580f1c3d233ed25'/>
<id>urn:sha1:c0d507d73b1cc51dd052abe96580f1c3d233ed25</id>
<content type='text'>
Cut down on number formating code size

r? @alexcrichton
</content>
</entry>
</feed>
