Skip to content

Commit 714ca57

Browse files
committed
Fill in comments
1 parent 71b0ab9 commit 714ca57

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

dotnet/src/webdriver/DriverService.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,6 @@ public async Task StartAsync()
269269

270270
driverServiceProcess.Start();
271271
bool serviceAvailable = await this.WaitForServiceInitializationAsync().ConfigureAwait(false);
272-
273272
DriverProcessStartedEventArgs processStartedEventArgs = new DriverProcessStartedEventArgs(driverServiceProcess);
274273
this.OnDriverProcessStarted(processStartedEventArgs);
275274

@@ -322,9 +321,9 @@ public async ValueTask DisposeAsync()
322321
}
323322

324323
/// <summary>
325-
///
324+
/// Releases all resources associated with this type in the instance's type chain. Override to dispose more resources.
326325
/// </summary>
327-
/// <returns></returns>
326+
/// <returns>A task that represents the asynchronous dispose operation.</returns>
328327
protected virtual async ValueTask DisposeAsyncCore()
329328
{
330329
await this.StopAsync().ConfigureAwait(false);

0 commit comments

Comments
 (0)