]> git.lizzy.rs Git - rust.git/commit
Fix Debug impl for RangeFull
authorUlrik Sverdrup <root@localhost>
Thu, 16 Apr 2015 08:02:22 +0000 (10:02 +0200)
committerUlrik Sverdrup <root@localhost>
Thu, 16 Apr 2015 08:02:22 +0000 (10:02 +0200)
commit709b5e8c89a5cdce911b26d2617f08c481c26341
treed6405183dd738d0a46f3728bd20cf27ef998741d
parent798fa2276c31f4661b1c3d96b627337f59e907b4
Fix Debug impl for RangeFull

The Debug impl was using quotes, which was inconsistent:

    => (.., 1.., 2..3, ..4)
    ("..", 1.., 2..3, ..4)

Fix to use just ..
src/libcore/ops.rs