Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation #49

Merged
merged 9 commits into from
Dec 11, 2023
2 changes: 1 addition & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.{
.name = "sig",
.version = "0.1.0",
.version = "0.1.1",
.dependencies = .{
.@"base58-zig" = .{
.url = "https://github.com/ultd/base58-zig/archive/fe23d156211edbfcede019970d1619184aadb83b.tar.gz",
Expand Down
8 changes: 6 additions & 2 deletions docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Thank you for considering contributing to Syndica's Sig project! We appreciate y

Before you start contributing, please take a moment to read and understand this Contributing Guidelines document. It will help you get started and ensure a smooth collaboration process.

## Dev Environment Setup

See the [readme](../readme.md#-setup).

## Style Guide

### Optional Values
Expand All @@ -12,8 +16,8 @@ Before you start contributing, please take a moment to read and understand this

```zig
fn do_something(maybe_foo: ?Foo) void {
if (maybe_foo) |foo| {
// do something with foo here
if (maybe_foo) |foo| {
// do something with foo here
}
}
```
Expand Down
Loading
Loading