-
Notifications
You must be signed in to change notification settings - Fork 6k
master -> main #23132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
master -> main #23132
Conversation
@@ -277,7 +277,7 @@ by 3. Here are a few hints: | |||
- The `for` loop can help you repeat a series of steps for all the numbers 1 through 20. | |||
|
|||
Try it yourself. Then check how you did. You should get 63 for an answer. You can see one possible answer by | |||
[viewing the completed code on GitHub](https://github.com/dotnet/samples/tree/master/csharp/branches-quickstart/Program.cs#L46-L54). | |||
[viewing the completed code on GitHub](https://github.com/dotnet/samples/tree/main/csharp/branches-quickstart/Program.cs#L46-L54). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The number reference here appears to be outdated. Will file an issue and fix separately to keep this PR focused as it's already large.
@@ -86,7 +86,7 @@ See [CLR](#clr) | |||
|
|||
In contrast to the [CLR](#clr), CoreRT is not a virtual machine, which means it doesn't include the facilities to generate and run code on-the-fly because it doesn't include a [JIT](#jit). It does, however, include the [GC](#gc) and the ability for run-time type identification (RTTI) and reflection. However, its type system is designed so that metadata for reflection isn't required. Not requiring metadata enables having an [AOT](#aot) tool chain that can link away superfluous metadata and (more importantly) identify code that the app doesn't use. CoreRT is in development. | |||
|
|||
See [Intro to .NET Native and CoreRT](https://github.com/dotnet/corert/blob/master/Documentation/intro-to-corert.md). | |||
See [Intro to .NET Native and CoreRT](https://github.com/dotnet/corert/blob/main/Documentation/intro-to-corert.md). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@stephentoub Can you point to the file in dotnet/runtime that should replace this link?
First 2 commits are a simple regex find & replace, the later commits are all manual. |
Thank you for updating all of these links Youssef! |
Regex:
Find:
com\/dotnet\/(.+)\/master
Replace with:
com\/dotnet\/$1\/main