Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/Syndica/sig into 19/bank
Browse files Browse the repository at this point in the history
  • Loading branch information
0xNineteen committed Dec 17, 2023
2 parents a3c5449 + 949eb15 commit d35adb9
Show file tree
Hide file tree
Showing 23 changed files with 4,365 additions and 3,375 deletions.
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

0 comments on commit d35adb9

Please sign in to comment.