Update docs/src/api/class-browsercontext.md

Co-authored-by: Max Schmitt <max@schmitt.mx>
Signed-off-by: Yury Semikhatsky <yurys@chromium.org>
This commit is contained in:
Yury Semikhatsky 2024-04-04 12:31:18 -07:00 committed by GitHub
parent 27ed3ac3ac
commit 185c348cc7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -91,7 +91,7 @@ background_page = context.wait_for_event("backgroundpage")
```
```csharp
context.BackgroundPage += (backgroundPage) =>
context.BackgroundPage += (_, backgroundPage) =>
{
Console.WriteLine(backgroundPage.Url);
};