Skip to content

Commit e52568d

Browse files
authored
Address remaning master mentions that should be main (#48904)
Did a second search of master in the repo since all the M2M changes went in and found some remaining places that weren't included in the previous change.
1 parent 7a6821e commit e52568d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/design/coreclr/botr/guide-for-porting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Porting the .NET Runtime to a new architecture typically follows along the
1515
following path.
1616

1717
As engineering continues along the development path, it is best if the logic can
18-
be placed into the master repository of the runtime as soon as possible. This
18+
be placed into the main branch of the runtime as soon as possible. This
1919
will have 2 major effects.
2020

2121
1. Individual commits are easier to review.

docs/project/branching-guide.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ Branching Guide
33

44
We will have the following branches in the corefx repository:
55

6-
* **master**
6+
* **main**
77
* Where most development happens
88
* Submit your PRs here unless you are adding API to a type that exists in the full .NET Framework
99

1010
* **release/[name]**
11-
* Release branches snapped from master.
11+
* Release branches snapped from main.
1212
* Do not submit pull requests to these branches
1313
* Fixes here do not flow to follow-up releases
14-
* Generally, fixes after a snap needing to make it in to a release will go in to master and get cherry-picked to the release branch.
14+
* Generally, fixes after a snap needing to make it in to a release will go in to main and get cherry-picked to the release branch.
1515

1616
* **dev/[name]**
1717
* Features (aka topics) under active development by more than one developer.
1818
* Submit PRs here only if you've made prior arrangements to work on something in one of these branches.
1919
* It is up to the developers creating these branches to decide what level of review is required
20-
* These features will only ship if they are successfully pulled to master or future via the standard PR and API review process.
20+
* These features will only ship if they are successfully pulled to main or future via the standard PR and API review process.

src/coreclr/scripts/superpmi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ python f:\gh\runtime\src\coreclr\scripts\superpmi.py replay -filter tests
7373
To generate ASM diffs, use the `asmdiffs` command. This requires a "diff" and "baseline"
7474
JIT. By default, the "diff" JIT is determined automatically as for the "replay" command,
7575
described above. Also by default, the baseline JIT is determined based on comparing the
76-
state of your branch with the `master` branch, and downloading an appropriate baseline JIT from the JIT
76+
state of your branch with the `main` branch, and downloading an appropriate baseline JIT from the JIT
7777
rolling build system. Alternatively, you can specify the path to a baseline JIT
7878
compiler using the `-base_jit_path` argument.
7979

0 commit comments

Comments
 (0)