Skip to content

Commit

Permalink
cherry-pick(#30232): docs: fix C# and python snippets
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Apr 9, 2024
1 parent 7748e21 commit c729a7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/api/class-browsercontext.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ background_page = context.wait_for_event("backgroundpage")
```

```csharp
context.BackgroundPage += (backgroundPage) =>
context.BackgroundPage += (_, backgroundPage) =>
{
Console.WriteLine(backgroundPage.Url());
Console.WriteLine(backgroundPage.Url);
};

```
Expand Down

0 comments on commit c729a7b

Please sign in to comment.