Skip to content

Commit 047b196

Browse files
committed
[NFC] Sync up capitalization of "thread" on main/next
The rest of the function uses lowercase, so prefer the spelling on next.
1 parent 79ed857 commit 047b196

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/SourceKit/tools/sourcekitd-test/sourcekitd-test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,9 +216,9 @@ static void skt_main(skt_args *args);
216216
int main(int argc, const char **argv) {
217217
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
218218
skt_args args = {argc, argv, 0};
219-
llvm::thread Thread(llvm::thread::DefaultStackSize,
219+
llvm::thread thread(llvm::thread::DefaultStackSize,
220220
skt_main, &args);
221-
Thread.join();
221+
thread.join();
222222
exit(args.ret);
223223
});
224224

0 commit comments

Comments
 (0)