Skip to content

Commit 704fd93

Browse files
committed
renamed branch master to main
1 parent 94f6aee commit 704fd93

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ jobs:
3838
env:
3939
CI: true
4040

41-
- name: Release to GH pages if on master
42-
if: github.ref == 'refs/heads/master'
41+
- name: Release to GH pages if on main
42+
if: github.ref == 'refs/heads/main'
4343
uses: crazy-max/ghaction-github-pages@v1
4444
with:
4545
target_branch: gh-pages

src/blog/articles/installing-node-js/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ In short, this is "the good" and "the bad" of following this approach:
289289

290290
## Install Node.js from source
291291

292-
If you are brave enough to be willing to build and install Node.js from source, your first stop should be the [official documentation on how to build Node.js from source](https://github.com/nodejs/node/blob/master/BUILDING.md).
292+
If you are brave enough to be willing to build and install Node.js from source, your first stop should be the [official documentation on how to build Node.js from source](https://github.com/nodejs/node/blob/main/BUILDING.md).
293293

294294
Here is a brief summary of all the steps involved:
295295

src/blog/articles/nodejs-stream-consumers-utilities/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,6 @@ When we accumulate an entire stream we are effectively defeating all the advanta
214214

215215
This is all for this article, feel free to [reach out to me on Twitter](https://twitter.com/loige) if you found this article interesting and if you think you learned something useful.
216216

217-
If you are curious, you can also [read the code of the `stream/consumers` module](https://github.com/nodejs/node/blob/master/lib/stream/consumers.js), it's actually a really thin layer (less than 100 lines) and you can learn a trick or two by doing that.
217+
If you are curious, you can also [read the code of the `stream/consumers` module](https://github.com/nodejs/node/blob/main/lib/stream/consumers.js), it's actually a really thin layer (less than 100 lines) and you can learn a trick or two by doing that.
218218

219219
See you in the next article!

0 commit comments

Comments
 (0)