Skip to content

Commit b70a499

Browse files
committed
Rename text() template parameter from A to Args to comply with print()
1 parent 65d74ba commit b70a499

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/mir/format.d

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ unittest
5959
}
6060

6161
/// Concatenated string results
62-
string text(string separator = "", A...)(auto ref inout(A) args)
63-
if (A.length > 0)
62+
string text(string separator = "", Args...)(auto ref inout(Args) args)
63+
if (Args.length > 0)
6464
{
65-
static if (A.length == 1)
65+
static if (Args.length == 1)
6666
{
6767
import mir.functional: forward;
6868
import mir.conv: to;

0 commit comments

Comments
 (0)