Skip to content

Commit 30612d7

Browse files
authored
core(user-flow): update UIString comments (#14458)
1 parent d442e35 commit 30612d7

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

core/user-flow.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,23 @@ import * as i18n from './lib/i18n/i18n.js';
1818

1919
const UIStrings = {
2020
/**
21-
* @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.
22-
* @example {https://example.com} url
21+
* @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.
22+
* @example {example.com} url
2323
*/
2424
defaultFlowName: 'User flow ({url})',
2525
/**
26-
* @description Default name for a user flow step that analyzes a page navigation.
27-
* @example {https://example.com} url
26+
* @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.
27+
* @example {example.com/page} url
2828
*/
2929
defaultNavigationName: 'Navigation report ({url})',
3030
/**
31-
* @description Default name for a user flow step that analyzes user interactions over a period of time.
32-
* @example {https://example.com} url
31+
* @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.
32+
* @example {example.com/page} url
3333
*/
3434
defaultTimespanName: 'Timespan report ({url})',
3535
/**
36-
* @description Default name for a user flow step that analyzes the page state at a point in time.
37-
* @example {https://example.com} url
36+
* @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.
37+
* @example {example.com/page} url
3838
*/
3939
defaultSnapshotName: 'Snapshot report ({url})',
4040
};

0 commit comments

Comments
 (0)