diff --git a/common/changes/@typespec/compiler/fix-url-doc_2023-04-14-17-53.json b/common/changes/@typespec/compiler/fix-url-doc_2023-04-14-17-53.json new file mode 100644 index 00000000000..e4ee72e1e5a --- /dev/null +++ b/common/changes/@typespec/compiler/fix-url-doc_2023-04-14-17-53.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@typespec/compiler", + "comment": "Fix `url` doc to not mention \"URI\"", + "type": "none" + } + ], + "packageName": "@typespec/compiler" +} \ No newline at end of file diff --git a/packages/compiler/lib/lib.tsp b/packages/compiler/lib/lib.tsp index 7e0f28cd6fb..75d4520d0a2 100644 --- a/packages/compiler/lib/lib.tsp +++ b/packages/compiler/lib/lib.tsp @@ -128,7 +128,7 @@ model Array {} model Record {} /** - * Represent a URI string as described by https://url.spec.whatwg.org/#relative-url-string. + * Represent a URL string as described by https://url.spec.whatwg.org/ */ @format("url") scalar url extends string;