Skip to content

Commit fb11499

Browse files
committed
Attend to review link and apply lints
1 parent 5bebd94 commit fb11499

File tree

1 file changed

+2
-2
lines changed
  • glean/src/core/metrics/types

1 file changed

+2
-2
lines changed

glean/src/core/metrics/types/url.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ export class UrlMetric extends Metric<string, string> {
4141
* 3. The URL must not be a data URL.
4242
* 4. Every URL must start with a valid scheme.
4343
*
44-
* **Note**: We explicitly do not validate if the URL is fully spec compliant,
44+
* Note: We explicitly do not validate if the URL is fully spec compliant,
4545
* the above validations are all that is done.
4646
*
4747
* @param v The value to validate.
48-
* @returns Whether or not v is a
48+
* @returns Whether or not v is a valid URL-like string.
4949
*/
5050
validate(v: unknown): v is string {
5151
if (!isString(v)) {

0 commit comments

Comments
 (0)