From bc474604dc9ba08253f50500781de45886a2cf5f Mon Sep 17 00:00:00 2001 From: Adam Raine Date: Thu, 20 Oct 2022 15:11:59 -0700 Subject: [PATCH 1/2] core(user-flow): update UIString comments --- core/user-flow.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/user-flow.js b/core/user-flow.js index a53d3de855ff..67cc3a2c190a 100644 --- a/core/user-flow.js +++ b/core/user-flow.js @@ -22,17 +22,17 @@ const UIStrings = { */ defaultFlowName: 'User flow ({url})', /** - * @description Default name for a user flow step that analyzes a page navigation. + * @description Default name for a Lighthouse report that analyzes a page navigation. * @example {https://example.com} url */ defaultNavigationName: 'Navigation report ({url})', /** - * @description Default name for a user flow step that analyzes user interactions over a period of time. + * @description Default name for a Lighthouse report that analyzes user interactions over a period of time. * @example {https://example.com} url */ defaultTimespanName: 'Timespan report ({url})', /** - * @description Default name for a user flow step that analyzes the page state at a point in time. + * @description Default name for a Lighthouse report that analyzes the page state at a point in time. * @example {https://example.com} url */ defaultSnapshotName: 'Snapshot report ({url})', From cd1184e93e5f44527104732cbbf1e4d42049ec37 Mon Sep 17 00:00:00 2001 From: Adam Raine Date: Fri, 21 Oct 2022 13:12:05 -0700 Subject: [PATCH 2/2] ope --- core/user-flow.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/core/user-flow.js b/core/user-flow.js index 67cc3a2c190a..d942796c7c66 100644 --- a/core/user-flow.js +++ b/core/user-flow.js @@ -17,23 +17,23 @@ import * as i18n from './lib/i18n/i18n.js'; const UIStrings = { /** - * @description Default name for a user flow on the given url. "User flow" refers to the series of page navigations and user interactions being tested on the page. - * @example {https://example.com} url + * @description Default name for a user flow on the given url. "User flow" refers to the series of page navigations and user interactions being tested on the page. "url" is a trimmed version of a url that only includes the domain name. + * @example {example.com} url */ defaultFlowName: 'User flow ({url})', /** - * @description Default name for a Lighthouse report that analyzes a page navigation. - * @example {https://example.com} url + * @description Default name for a Lighthouse report that analyzes a page navigation. "url" is a trimmed version of a url that only includes the domain name and path. + * @example {example.com/page} url */ defaultNavigationName: 'Navigation report ({url})', /** - * @description Default name for a Lighthouse report that analyzes user interactions over a period of time. - * @example {https://example.com} url + * @description Default name for a Lighthouse report that analyzes user interactions over a period of time. "url" is a trimmed version of a url that only includes the domain name and path. + * @example {example.com/page} url */ defaultTimespanName: 'Timespan report ({url})', /** - * @description Default name for a Lighthouse report that analyzes the page state at a point in time. - * @example {https://example.com} url + * @description Default name for a Lighthouse report that analyzes the page state at a point in time. "url" is a trimmed version of a url that only includes the domain name and path. + * @example {example.com/page} url */ defaultSnapshotName: 'Snapshot report ({url})', };