File tree Expand file tree Collapse file tree 8 files changed +11
-11
lines changed Expand file tree Collapse file tree 8 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 1919 exit 1;
2020 elif ! grep -q "$AUTHOR" NOTICE || false; then
2121 printf "\nAuthor '$AUTHOR' does not appear to be listed in the NOTICE file, yet.\n" &&
22- printf "Please see https://github.com/AssemblyScript/assemblyscript/blob/master /CONTRIBUTING.md\n" &&
22+ printf "Please see https://github.com/AssemblyScript/assemblyscript/blob/main /CONTRIBUTING.md\n" &&
2323 exit 1;
2424 else
2525 printf "\nOK: Author is present in the NOTICE file.\n";
2929 run : |
3030 if git --no-pager diff --name-only $(git rev-parse origin/${{ github.base_ref }})...${{ github.sha }} | grep -q "^dist/"; then
3131 printf "\nThe pull request modifies distribution files, but it shouldn't.\n" &&
32- printf "Please see https://github.com/AssemblyScript/assemblyscript/blob/master /CONTRIBUTING.md\n" &&
32+ printf "Please see https://github.com/AssemblyScript/assemblyscript/blob/main /CONTRIBUTING.md\n" &&
3333 exit 1;
3434 else
3535 printf "\nOK: Distributions files have not been modified.\n";
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Bugs and enhancement suggestions are tracked as GitHub issues.
1515
1616#### How Do I Submit A (Good) Bug Report?
1717
18- After you've determined which repository your bug is related to and that the issue is still present in the latest version of the master branch, create an issue on that repository and provide the following information:
18+ After you've determined which repository your bug is related to and that the issue is still present in the latest version of the main branch, create an issue on that repository and provide the following information:
1919
2020* Use a ** clear and descriptive title** for the issue to identify the problem.
2121* Explain which ** behavior you expected** to see instead and why.
Original file line number Diff line number Diff line change 33</p >
44
55<p align =" center " >
6- <a href =" https://github.com/AssemblyScript/assemblyscript/actions?query=workflow%3ATest " ><img src =" https://img.shields.io/github/workflow/status/AssemblyScript/assemblyscript/Test/master ?label=test&logo=github " alt =" Test status " /></a >
7- <a href =" https://github.com/AssemblyScript/assemblyscript/actions?query=workflow%3APublish " ><img src =" https://img.shields.io/github/workflow/status/AssemblyScript/assemblyscript/Publish/master ?label=publish&logo=github " alt =" Publish status " /></a >
6+ <a href =" https://github.com/AssemblyScript/assemblyscript/actions?query=workflow%3ATest " ><img src =" https://img.shields.io/github/workflow/status/AssemblyScript/assemblyscript/Test/main ?label=test&logo=github " alt =" Test status " /></a >
7+ <a href =" https://github.com/AssemblyScript/assemblyscript/actions?query=workflow%3APublish " ><img src =" https://img.shields.io/github/workflow/status/AssemblyScript/assemblyscript/Publish/main ?label=publish&logo=github " alt =" Publish status " /></a >
88 <a href =" https://www.npmjs.com/package/assemblyscript " ><img src =" https://img.shields.io/npm/v/assemblyscript.svg?label=compiler&color=007acc&logo=npm " alt =" npm compiler version " /></a >
99 <a href =" https://www.npmjs.com/package/@assemblyscript/loader " ><img src =" https://img.shields.io/npm/v/@assemblyscript/loader.svg?label=loader&color=007acc&logo=npm " alt =" npm loader version " /></a >
1010 <a href =" https://discord.gg/assemblyscript " ><img src =" https://img.shields.io/discord/721472913886281818.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2 " alt =" Discord online " /></a >
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ Exports
1818
1919* ** asc** <br />
2020 AssemblyScript compiler frontend that one will interact with
21- ([ see] ( https://github.com/AssemblyScript/assemblyscript/tree/master /cli ) ).
21+ ([ see] ( https://github.com/AssemblyScript/assemblyscript/tree/main /cli ) ).
2222
2323Example usage
2424-------------
@@ -35,4 +35,4 @@ require(
3535);
3636```
3737
38- There is also the [ SDK example] ( https://github.com/AssemblyScript/examples/tree/master /sdk ) showing how to compile some actual code.
38+ There is also the [ SDK example] ( https://github.com/AssemblyScript/examples/tree/main /sdk ) showing how to compile some actual code.
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Portable compiler sources that compile to both JavaScript using `tsc` and WebAss
66Architecture
77------------
88
9- ![ ] ( https://raw.githubusercontent.com/AssemblyScript/assemblyscript/master /media/architecture.svg )
9+ ![ ] ( https://raw.githubusercontent.com/AssemblyScript/assemblyscript/main /media/architecture.svg )
1010
1111Usage
1212-----
Original file line number Diff line number Diff line change 33 *
44 * tsc uses the .js file next to it, while asc makes it a Wasm import.
55 *
6- * See: https://github.com/WebAssembly/binaryen/blob/master /src/binaryen-c.h
6+ * See: https://github.com/WebAssembly/binaryen/blob/main /src/binaryen-c.h
77 *
88 * @license Apache-2.0
99 */
Original file line number Diff line number Diff line change 11// Phase: wasi_snapshot_preview1
2- // See: https://github.com/WebAssembly/WASI/tree/master /phases/snapshot/witx
2+ // See: https://github.com/WebAssembly/WASI/tree/main /phases/snapshot/witx
33
44// helper types to be more explicit
55type char = u8 ;
Original file line number Diff line number Diff line change 11// Phase: wasi_unstable / wasi_snapshot_preview0
2- // See: https://github.com/WebAssembly/WASI/tree/master /phases/old/snapshot_0/witx
2+ // See: https://github.com/WebAssembly/WASI/tree/main /phases/old/snapshot_0/witx
33
44// helper types to be more explicit
55type char = u8 ;
You can’t perform that action at this time.
0 commit comments