Skip to content

Commit e73dac5

Browse files
committed
Use Void over () on Tests files.
1 parent 360f88b commit e73dac5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/LanguageServerProtocolTests/CodingTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ final class CodingTests: XCTestCase {
199199
}
200200
}
201201

202-
func with<T>(_ value: T, mutate: (inout T) -> ()) -> T {
202+
func with<T>(_ value: T, mutate: (inout T) -> Void) -> T {
203203
var localCopy = value
204204
mutate(&localCopy)
205205
return localCopy

0 commit comments

Comments
 (0)