docs: csharp apostrophes (#17202)

This commit is contained in:
Ruaan Kruger 2022-09-08 21:49:22 +02:00 committed by GitHub
parent cbc8d1a19f
commit 9c996f6cbb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -321,7 +321,7 @@ var browser = await chromium.LaunchAsync(new BrowserTypeLaunchOptions { Headless
// Setup context however you like. // Setup context however you like.
var context = await browser.NewContextAsync(); // Pass any options var context = await browser.NewContextAsync(); // Pass any options
await context.RouteAsync('**/*', route => route.ContinueAsync()); await context.RouteAsync("**/*", route => route.ContinueAsync());
// Pause the page, and start recording manually. // Pause the page, and start recording manually.
var page = await context.NewPageAsync(); var page = await context.NewPageAsync();

View file

@ -269,7 +269,7 @@ var browser = await chromium.LaunchAsync(new BrowserTypeLaunchOptions { Headless
// Setup context however you like. // Setup context however you like.
var context = await browser.NewContextAsync(); // Pass any options var context = await browser.NewContextAsync(); // Pass any options
await context.RouteAsync('**/*', route => route.ContinueAsync()); await context.RouteAsync("**/*", route => route.ContinueAsync());
// Pause the page, and start recording manually. // Pause the page, and start recording manually.
var page = await context.NewPageAsync(); var page = await context.NewPageAsync();