From a694eebabe5f861f1f69b87f935806472b9f2b77 Mon Sep 17 00:00:00 2001 From: Mihail Stoykov <312246+mstoykov@users.noreply.github.com> Date: Thu, 25 Jan 2024 10:42:50 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Heitor Tashiro Sergent --- docs/sources/next/javascript-api/k6-html/element/_index.md | 2 +- .../next/javascript-api/k6-html/element/element-selection.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/sources/next/javascript-api/k6-html/element/_index.md b/docs/sources/next/javascript-api/k6-html/element/_index.md index d21c2998c2..54e8d98622 100644 --- a/docs/sources/next/javascript-api/k6-html/element/_index.md +++ b/docs/sources/next/javascript-api/k6-html/element/_index.md @@ -16,7 +16,7 @@ The Element object provides a similar API to the [DOM Element API](https://devel | Method | Description | | ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [selection](https://grafana.com/docs/k6//javascript-api/k6-html/element/element-selection) | The selection that is matching the element | +| [selection](https://grafana.com/docs/k6//javascript-api/k6-html/element/element-selection) | The selection matching the element. | | nodeName | The name of the element. | | nodeType | The type of the element. | | nodeValue | The element value. | diff --git a/docs/sources/next/javascript-api/k6-html/element/element-selection.md b/docs/sources/next/javascript-api/k6-html/element/element-selection.md index 549ae1a7c1..502bbc5eb4 100644 --- a/docs/sources/next/javascript-api/k6-html/element/element-selection.md +++ b/docs/sources/next/javascript-api/k6-html/element/element-selection.md @@ -7,13 +7,13 @@ excerpt: 'Retrieve the Selection matching this element.' Retrieve the Selection matching this element. -Mimics `$(element)` +Mimics `$(element)`. ### Returns | Type | Description | | ------- | ------------------------------------ | -| Selection | The Selection mathing this element. | +| Selection | The Selection matching this element. | ### Example