Skip to content

Commit 986a430

Browse files
author
William Kent
committed
Fix embarrassing typo
One one-thousandth of a second is a millisecond, not a microsecond. Oops.
1 parent 4609d90 commit 986a430

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/omnisharp/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ export class StdioOmnisharpServer extends OmnisharpServer {
534534
const p = new Promise<void>((resolve, reject) => {
535535
let listener: vscode.Disposable;
536536

537-
// Convert the timeout from the seconds to microseconds, which is required by setTimeout().
537+
// Convert the timeout from the seconds to milliseconds, which is required by setTimeout().
538538
const timeoutDuration = this._options.projectLoadTimeout * 1000
539539

540540
// timeout logic

0 commit comments

Comments
 (0)