Skip to content

Commit 30d6a16

Browse files
committed
use return scope rather than scope return
1 parent 0145ed9 commit 30d6a16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

std/typecons.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6677,8 +6677,8 @@ private static:
66776677
if (atts & FA.property) poatts ~= " @property";
66786678
if (atts & FA.safe ) poatts ~= " @safe";
66796679
if (atts & FA.trusted ) poatts ~= " @trusted";
6680-
if (atts & FA.scope_ ) poatts ~= " scope";
66816680
if (atts & FA.return_ ) poatts ~= " return";
6681+
if (atts & FA.scope_ ) poatts ~= " scope";
66826682
return poatts;
66836683
}
66846684
enum postAtts = make_postAtts();

0 commit comments

Comments
 (0)