Skip to content

Commit

Permalink
docs: fix C# and python snippets (microsoft#30232)
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-s committed Apr 4, 2024
1 parent 996b1ce commit 7ad2553
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 7ad2553

Please sign in to comment.