Skip to content

Commit 5d80957

Browse files
authored
Merge pull request #668 from alexbuckgit/alexbuckgit/docutune-autopr-docs-link-absolute-20220920-210044-5234668
[BULK UPDATE] DocuTune - Rebranding links
2 parents 62007dc + b593f5d commit 5d80957

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ We will merge updates from the current main branch to the latest dev branch to k
1616

1717
## Documentation Links
1818

19-
- [Staging review from 'main' branch](https://review.docs.microsoft.com/windows/uwpcommunitytoolkit/?branch=main)
20-
- [Live site from 'live' branch](https://docs.microsoft.com/windows/uwpcommunitytoolkit)
19+
- [Staging review from 'main' branch](https://review.learn.microsoft.com/windows/uwpcommunitytoolkit/?branch=main)
20+
- [Live site from 'live' branch](https://learn.microsoft.com/windows/uwpcommunitytoolkit)
2121

2222
## Microsoft Open Source Code of Conduct
2323

docs/.template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ dev_langs:
77
- csharp
88
---
99

10-
<!-- To know about all the available Markdown syntax, Check out https://docs.microsoft.com/en-us/contribute/markdown-reference -->
10+
<!-- To know about all the available Markdown syntax, Check out https://learn.microsoft.com/contribute/markdown-reference -->
1111
<!-- Ensure you remove all comments before submission, to ensure that there are no formatting issues when displaying this page. -->
1212
<!-- It is recommended to check how the Documentation will look in the sample app, before Merging a PR -->
13-
<!-- **Note:** All links to other docs.microsoft.com pages should be relative without locale, i.e. for the one above would be /contribute/markdown-reference -->
13+
<!-- **Note:** All links to other learn.microsoft.com pages should be relative without locale, i.e. for the one above would be /contribute/markdown-reference -->
1414
<!-- Included images should be optimized for size and not include any Intellectual Property references. -->
1515
<!-- When linking to the Community Toolkit repo for source references include the specific rel/#.#.# version path of the expected release version, this ensures code will be accessible by docs if it is refactored or moved during development of the next release. -->
1616

docs/gaze/GazeInteractionLibrary.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@ private void OnInvokeProgress(object sender, DwellProgressEventArgs e)
189189
```
190190

191191
<!-- All control/helper must at least have an example to show the use of Properties and Methods in your control/helper with the output -->
192-
<!-- Use <example> and <code> tags in C# to create a Propertie/method specific examples. For more info - https://docs.microsoft.com/dotnet/csharp/programming-guide/xmldoc/example -->
193-
<!-- Optional: Codes to achieve real-world use case with the output. For eg: Check https://docs.microsoft.com/windows/communitytoolkit/animations/animationset#examples -->
192+
<!-- Use <example> and <code> tags in C# to create a Propertie/method specific examples. For more info - https://learn.microsoft.com/dotnet/csharp/programming-guide/xmldoc/example -->
193+
<!-- Optional: Codes to achieve real-world use case with the output. For eg: Check https://learn.microsoft.com/windows/communitytoolkit/animations/animationset#examples -->
194194

195195
## Sample Project
196196

docs/high-performance/StringPool.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ public static string GetHost(string url)
2525
// We assume the input might start either with eg. https:// (or other prefix),
2626
// or directly with the host name. Furthermore, we also assume that the input
2727
// URL will always have a '/' character right after the host name.
28-
// For instance: "https://docs.microsoft.com/dotnet/api/system.string.intern".
28+
// For instance: "https://learn.microsoft.com/dotnet/api/system.string.intern".
2929
int
3030
prefixOffset = url.AsSpan().IndexOf(stackalloc char[] { ':', '/', '/' }),
3131
startIndex = prefixOffset == -1 ? 0 : prefixOffset + 3,
3232
endIndex = url.AsSpan(startIndex).IndexOf('/');
3333

34-
// In this example, it would be "docs.microsoft.com"
34+
// In this example, it would be "learn.microsoft.com"
3535
ReadOnlySpan<char> span = url.AsSpan(startIndex, endIndex);
3636

3737
return StringPool.Shared.GetOrAdd(span);

docs/services/GraphLogin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ End Sub
104104
| Photo | System.Drawing.Image | Profile picture for the logged on user from the Microsoft Graph |
105105
| GraphServiceClient | Microsoft.Graph.GraphServiceClient | The GraphServiceClient instance for the logged on user from the Microsoft Graph |
106106

107-
<!-- Use <remarks> tag in C# to give more info about a propertie. For more info - https://docs.microsoft.com/dotnet/csharp/programming-guide/xmldoc/remarks -->
107+
<!-- Use <remarks> tag in C# to give more info about a propertie. For more info - https://learn.microsoft.com/dotnet/csharp/programming-guide/xmldoc/remarks -->
108108

109109
## Methods
110110

0 commit comments

Comments
 (0)