Skip to content

Commit

Permalink
Merge pull request #38 from pedropark99/threads
Browse files Browse the repository at this point in the history
Add new chapter about threads in Zig
  • Loading branch information
pedropark99 authored Sep 16, 2024
2 parents 6fae6f3 + 63c019b commit 3bdc3da
Show file tree
Hide file tree
Showing 104 changed files with 8,991 additions and 5,859 deletions.
38 changes: 19 additions & 19 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
/.quarto/

/zig-out/
/zig-cache/
/**/zig-out/
/**/zig-cache/

/**/.zig-cache/

./lldb/
lldb

foo.txt

*.o
*.a
*.aux
*.log
*.toc
/.quarto/

/zig-out/
/zig-cache/
/**/zig-out/
/**/zig-cache/

/**/.zig-cache/

./lldb/
lldb

foo.txt

*.o
*.a
*.aux
*.log
*.toc
19 changes: 19 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Contributing

There are some different ways for you to contribute to this project:

- If you don't understand something, or, if a particular section of the book seems
confusing to you, you can [create an issue and give a feedback, or, a suggestion of improvement](https://github.com/pedropark99/zig-book/issues).

- 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.
If you've never done this before, the process is very easy:

- Click the edit this page on the sidebar.

- Make the changes using GitHub's in-page editor and save.

- Submit a pull request and include a brief description of your changes.
"Fixing typos" is perfectly adequate.

If you send a Pull Request with significant changes, include the phrase "I assign the copyright of this contribution
to Pedro Duarte Faria" in the description of your Pull Request - I need this so I can publish the book.
Loading

0 comments on commit 3bdc3da

Please sign in to comment.