diff --git a/docs/src/api/class-frame.md b/docs/src/api/class-frame.md index 34b59c1a05..83cb970e17 100644 --- a/docs/src/api/class-frame.md +++ b/docs/src/api/class-frame.md @@ -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`]: diff --git a/docs/src/api/class-page.md b/docs/src/api/class-page.md index 1e75a80125..36e80244c0 100644 --- a/docs/src/api/class-page.md +++ b/docs/src/api/class-page.md @@ -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`]: