From d4360cf7c016a32838ab150c091da3f583d3ff8d Mon Sep 17 00:00:00 2001 From: Dmitry Gozman Date: Wed, 26 Jan 2022 16:46:16 -0800 Subject: [PATCH] chore: fix docs generator (#11665) --- docs/src/intro-csharp.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/src/intro-csharp.md b/docs/src/intro-csharp.md index bbb95c1cc7..6e5d96bc3a 100644 --- a/docs/src/intro-csharp.md +++ b/docs/src/intro-csharp.md @@ -54,10 +54,10 @@ dotnet run By default, Playwright runs the browsers in headless mode. To see the browser UI, pass the `Headless = false` flag while launching the browser. You can also use [`option: slowMo`] to slow down execution. Learn more in the debugging tools [section](./debug.md). ```csharp -await playwright.Firefox.LaunchAsync(new BrowserTypeLaunchOptions -{ - Headless = false, - SlowMo = 50, +await playwright.Firefox.LaunchAsync(new BrowserTypeLaunchOptions +{ + Headless = false, + SlowMo = 50, }); ```