Skip to content

Commit b06b414

Browse files
authored
Merge pull request #672 from MicrosoftDocs/main
[Learn Rebrand Metadata Publish]
2 parents a3854b9 + 5d80957 commit b06b414

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ The Windows Community Toolkit is a collection of helper functions, custom contro
66

77
Do you want to contribute or update the docs? Read the [contribution guidelines](CONTRIBUTING.md)
88

9-
When opening a PR, start by forking this repository. Then, based on the type of change you're making you'll need to create a new branch from either the `master` or `dev` branches:
9+
When opening a PR, start by forking this repository. Then, based on the type of change you're making you'll need to create a new branch from either the `main` or `dev` branches:
1010

11-
:exclamation: If you have a typo or existing document improvement to an already shipped feature, please base your change off of the [master branch](https://github.com/MicrosoftDocs/WindowsCommunityToolkitDocs/tree/master). This will allow us to get the change to the published documentation between releases.
11+
:exclamation: If you have a typo or existing document improvement to an already shipped feature, please base your change off the [`main` branch](https://github.com/MicrosoftDocs/WindowsCommunityToolkitDocs/tree/main). This will allow us to get the change to the published documentation between releases.
1212

1313
:new::books: For documentation regarding any new features, please base your fork off the last updated dev branch. For example: 'dev/7.1.0'.
1414

1515
We will merge updates from the current main branch to the latest dev branch to keep it in-sync with any updated changes. We will periodically sync the main branch automatically with the live branch to pick up any changes made over time. When we make a new release, we will integrate the dev branch into the main branch in order to publish documentation for new features.
1616

1717
## Documentation Links
1818

19-
- [Staging review from 'master' branch](https://review.docs.microsoft.com/windows/uwpcommunitytoolkit/?branch=master)
20-
- [Live site from 'live' branch](/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)