File tree 8 files changed +11
-11
lines changed 8 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 19
19
exit 1;
20
20
elif ! grep -q "$AUTHOR" NOTICE || false; then
21
21
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" &&
23
23
exit 1;
24
24
else
25
25
printf "\nOK: Author is present in the NOTICE file.\n";
29
29
run : |
30
30
if git --no-pager diff --name-only $(git rev-parse origin/${{ github.base_ref }})...${{ github.sha }} | grep -q "^dist/"; then
31
31
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" &&
33
33
exit 1;
34
34
else
35
35
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.
15
15
16
16
#### How Do I Submit A (Good) Bug Report?
17
17
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:
19
19
20
20
* Use a ** clear and descriptive title** for the issue to identify the problem.
21
21
* Explain which ** behavior you expected** to see instead and why.
Original file line number Diff line number Diff line change 3
3
</p >
4
4
5
5
<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 >
8
8
<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 >
9
9
<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 >
10
10
<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
18
18
19
19
* ** asc** <br />
20
20
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 ) ).
22
22
23
23
Example usage
24
24
-------------
@@ -35,4 +35,4 @@ require(
35
35
);
36
36
```
37
37
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
6
6
Architecture
7
7
------------
8
8
9
- ![ ] ( https://raw.githubusercontent.com/AssemblyScript/assemblyscript/master /media/architecture.svg )
9
+ ![ ] ( https://raw.githubusercontent.com/AssemblyScript/assemblyscript/main /media/architecture.svg )
10
10
11
11
Usage
12
12
-----
Original file line number Diff line number Diff line change 3
3
*
4
4
* tsc uses the .js file next to it, while asc makes it a Wasm import.
5
5
*
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
7
7
*
8
8
* @license Apache-2.0
9
9
*/
Original file line number Diff line number Diff line change 1
1
// 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
3
3
4
4
// helper types to be more explicit
5
5
type char = u8 ;
Original file line number Diff line number Diff line change 1
1
// 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
3
3
4
4
// helper types to be more explicit
5
5
type char = u8 ;
You can’t perform that action at this time.
0 commit comments