Skip to content

Commit 3bdc3da

Browse files
authored
Merge pull request #38 from pedropark99/threads
Add new chapter about threads in Zig
2 parents 6fae6f3 + 63c019b commit 3bdc3da

File tree

104 files changed

+8991
-5859
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+8991
-5859
lines changed

.gitignore

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
/.quarto/
2-
3-
/zig-out/
4-
/zig-cache/
5-
/**/zig-out/
6-
/**/zig-cache/
7-
8-
/**/.zig-cache/
9-
10-
./lldb/
11-
lldb
12-
13-
foo.txt
14-
15-
*.o
16-
*.a
17-
*.aux
18-
*.log
19-
*.toc
1+
/.quarto/
2+
3+
/zig-out/
4+
/zig-cache/
5+
/**/zig-out/
6+
/**/zig-cache/
7+
8+
/**/.zig-cache/
9+
10+
./lldb/
11+
lldb
12+
13+
foo.txt
14+
15+
*.o
16+
*.a
17+
*.aux
18+
*.log
19+
*.toc

CONTRIBUTING.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Contributing
2+
3+
There are some different ways for you to contribute to this project:
4+
5+
- If you don't understand something, or, if a particular section of the book seems
6+
confusing to you, you can [create an issue and give a feedback, or, a suggestion of improvement](https://github.com/pedropark99/zig-book/issues).
7+
8+
- If you spot a typo anywhere in the book, feel free to edit the underlying QMD file (QMD files are inside the [`Chapters` folder](https://github.com/pedropark99/zig-book/tree/main/Chapters)) and send a pull request.
9+
If you've never done this before, the process is very easy:
10+
11+
- Click the edit this page on the sidebar.
12+
13+
- Make the changes using GitHub's in-page editor and save.
14+
15+
- Submit a pull request and include a brief description of your changes.
16+
"Fixing typos" is perfectly adequate.
17+
18+
If you send a Pull Request with significant changes, include the phrase "I assign the copyright of this contribution
19+
to Pedro Duarte Faria" in the description of your Pull Request - I need this so I can publish the book.

0 commit comments

Comments
 (0)