Skip to content

Commit 3ee0a50

Browse files
committed
Fix GitHub URL case
1 parent b36691d commit 3ee0a50

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

playground/src/samples/hyperlinkSample.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* @remarks
55
*
6-
* Links can point to a URL: {@link https://github.com/Microsoft/tsdoc}
6+
* Links can point to a URL: {@link https://github.com/microsoft/tsdoc}
77
*
88
* Links can point to an API item: {@link Button}
99
*

rush.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@
216216
* your PR branch, and in this situation "rush change" will also automatically invoke "git fetch"
217217
* to retrieve the latest activity for the remote master branch.
218218
*/
219-
"url": "https://github.com/Microsoft/tsdoc.git"
219+
"url": "https://github.com/microsoft/tsdoc.git"
220220
},
221221

222222
/**

tsdoc-config/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ https://github.com/microsoft/tsdoc
1515

1616
The **tsdocconfig.json** file is optional. When used, it is expected to be found in the same folder as
1717
the **tsconfig.json** file for a project. The loader looks for it by walking upwards in the directory tree
18-
from until it finds a folder containing **tsconfig.json** or **package.json**, and then it attempts to load
18+
until it finds a folder containing **tsconfig.json** or **package.json**, and then it attempts to load
1919
**tsdocconfig.json** from that location.
2020

2121
The **tsdocconfig.json** file conforms to the [tsdocconfig.schema.json](

tsdoc-config/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
],
1414
"repository": {
1515
"type": "git",
16-
"url": "https://github.com/Microsoft/tsdoc"
16+
"url": "https://github.com/microsoft/tsdoc"
1717
},
18-
"homepage": "https://github.com/Microsoft/tsdoc",
18+
"homepage": "https://github.com/microsoft/tsdoc",
1919
"main": "lib/index.js",
2020
"typings": "lib/index.d.ts",
2121
"license": "MIT",

tsdoc/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
],
1414
"repository": {
1515
"type": "git",
16-
"url": "https://github.com/Microsoft/tsdoc"
16+
"url": "https://github.com/microsoft/tsdoc"
1717
},
18-
"homepage": "https://github.com/Microsoft/tsdoc",
18+
"homepage": "https://github.com/microsoft/tsdoc",
1919
"main": "lib/index.js",
2020
"typings": "lib/index.d.ts",
2121
"license": "MIT",

tsdoc/src/details/StandardTags.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export class StandardTags {
125125
* separate NPM package.
126126
*
127127
* TODO: The notation for API item references is still being standardized. See this issue:
128-
* https://github.com/Microsoft/tsdoc/issues/9
128+
* https://github.com/microsoft/tsdoc/issues/9
129129
*/
130130
public static readonly inheritDoc: TSDocTagDefinition = StandardTags._defineTag({
131131
tagName: '@inheritDoc',
@@ -156,7 +156,7 @@ export class StandardTags {
156156
* using a selector in the TSDoc declaration reference notation.
157157
*
158158
* TODO: The `{@label}` notation is still being standardized. See this issue:
159-
* https://github.com/Microsoft/tsdoc/issues/9
159+
* https://github.com/microsoft/tsdoc/issues/9
160160
*/
161161
public static readonly label: TSDocTagDefinition = StandardTags._defineTag({
162162
tagName: '@label',
@@ -172,7 +172,7 @@ export class StandardTags {
172172
* expressions for referencing API items.
173173
*
174174
* TODO: The `{@link}` notation is still being standardized. See this issue:
175-
* https://github.com/Microsoft/tsdoc/issues/9
175+
* https://github.com/microsoft/tsdoc/issues/9
176176
*/
177177
public static readonly link: TSDocTagDefinition = StandardTags._defineTag({
178178
tagName: '@link',

0 commit comments

Comments
 (0)