|
13 | 13 | */ |
14 | 14 | export const enum ExtractorMessageId { |
15 | 15 | /** |
16 | | - * The doc comment should not contain more than one release tag. |
| 16 | + * "The doc comment should not contain more than one release tag." |
17 | 17 | */ |
18 | 18 | ExtraReleaseTag = 'ae-extra-release-tag', |
19 | 19 |
|
20 | 20 | /** |
21 | | - * This symbol has another declaration with a different release tag. |
| 21 | + * "This symbol has another declaration with a different release tag." |
22 | 22 | */ |
23 | 23 | DifferentReleaseTags = 'ae-different-release-tags', |
24 | 24 |
|
25 | 25 | /** |
26 | | - * The symbol ___ is marked as ___, but its signature references ___ which is marked as ___. |
| 26 | + * "The symbol ___ is marked as ___, but its signature references ___ which is marked as ___." |
27 | 27 | */ |
28 | 28 | IncompatibleReleaseTags = 'ae-incompatible-release-tags', |
29 | 29 |
|
30 | 30 | /** |
31 | | - * The doc comment should not contain more than one release tag. |
| 31 | + * "___ is exported by the package, but it is missing a release tag (`@alpha`, `@beta`, `@public`, or `@internal`)." |
32 | 32 | */ |
33 | 33 | MissingReleaseTag = 'ae-missing-release-tag', |
34 | 34 |
|
35 | 35 | /** |
36 | | - * The `@packageDocumentation` comment must appear at the top of entry point *.d.ts file. |
| 36 | + * "The `@packageDocumentation` comment must appear at the top of entry point *.d.ts file." |
37 | 37 | */ |
38 | 38 | MisplacedPackageTag = 'ae-misplaced-package-tag', |
39 | 39 |
|
40 | 40 | /** |
41 | | - * The symbol ___ needs to be exported by the entry point ___. |
| 41 | + * "The symbol ___ needs to be exported by the entry point ___." |
42 | 42 | */ |
43 | 43 | ForgottenExport = 'ae-forgotten-export', |
44 | 44 |
|
45 | 45 | /** |
46 | | - * The name ___ should be prefixed with an underscore because the declaration is marked as `@internal`. |
| 46 | + * "The name ___ should be prefixed with an underscore because the declaration is marked as `@internal`." |
47 | 47 | */ |
48 | 48 | InternalMissingUnderscore = 'ae-internal-missing-underscore' |
49 | 49 | } |
|
0 commit comments