August 03
https://issues.dlang.org/show_bug.cgi?id=24550

Dlang Bot <dlang-bot@dlang.rocks> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |pull

--- Comment #1 from Dlang Bot <dlang-bot@dlang.rocks> ---
@RubyTheRoobster updated dlang/phobos pull request #9041 "Fix Issue 24550 -  - formattedWrite should support string interpolation " fixing this issue:

- Fix Bugzilla Issue 24550

https://github.com/dlang/phobos/pull/9041

--
12 hours ago
https://issues.dlang.org/show_bug.cgi?id=24550

Paul Backus <snarwin+bugzilla@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |snarwin+bugzilla@gmail.com

--- Comment #2 from Paul Backus <snarwin+bugzilla@gmail.com> ---
Should we really be calling this "formatted" write when it doesn't use a format
string?
Seems like it would make more sense with a different name; for example:

sink.write(i"Hello $(world)");

--