Skip to content

Commit 60529b6

Browse files
HandyS11claude
andcommitted
style: space after spread operator for ReSharper 2026.2
ReSharper 2026.2 normalises `..x` to `.. x` in collection expressions, so cleanupcode rewrote this line and the CI format gate failed. Apply the formatting the tool now produces; it already matches the spread style used elsewhere in the tests. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
1 parent b8e360d commit 60529b6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/RustPlusBot.Features.Commands.Tests/Modules/CctvChoiceDriftTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ private static IReadOnlyList<string> ChoiceValues()
1414
.GetParameters()[0];
1515
return
1616
[
17-
..parameter.GetCustomAttributes<ChoiceAttribute>()
17+
.. parameter.GetCustomAttributes<ChoiceAttribute>()
1818
.Select(c => (string)c.Value!)
1919
];
2020
}

0 commit comments

Comments
 (0)