docs(dotnet): fix EvalueHandleAsync typo (#12920)

This commit is contained in:
Max Schmitt 2022-03-22 16:36:21 +01:00 committed by GitHub
parent d8ab76bf64
commit 4aa7677f98
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -646,7 +646,7 @@ a_handle = page.evaluate_handle("document") # handle for the "document"
```
```csharp
var docHandle = await frame.EvalueHandleAsync("document"); // Handle for the `document`
var docHandle = await frame.EvaluateHandleAsync("document"); // Handle for the `document`
```
[JSHandle] instances can be passed as an argument to the [`method: Frame.evaluateHandle`]:

View file

@ -1372,7 +1372,7 @@ a_handle = page.evaluate_handle("document") # handle for the "document"
```
```csharp
var docHandle = await page.EvalueHandleAsync("document"); // Handle for the `document`
var docHandle = await page.EvaluateHandleAsync("document"); // Handle for the `document`
```
[JSHandle] instances can be passed as an argument to the [`method: Page.evaluateHandle`]: