Skip to content

Commit

Permalink
Update CONTRIBUTING.md (#1612)
Browse files Browse the repository at this point in the history
  • Loading branch information
trajan0x authored Dec 12, 2023
1 parent f92d9c3 commit e2db4f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ If you need to make a new go module, here are the steps to follow:
```go
module github.com/synapsecns/sanguine/path/to/your/module

go 1.19 // or whatever the version is in go.work
go 1.20 // or whatever the version is in go.work
```

Any local dependencies should use replaces like this:
```go
module github.com/synapsecns/sanguine/path/to/your/module

go 1.19 // or whatever the version is in go.work
go 1.20 // or whatever the version is in go.work

require (
github.com/synapsecns/sanguine/core v0.0.1
Expand All @@ -33,7 +33,7 @@ If you need to make a new go module, here are the steps to follow:
In so far as you have issues running `go mod tidy`, you may need to add additional replace directives. If you can't figure out what these are, please look at other requires of the module you're trying to link to
3. Add the module to the [go.work](go.work) file. The path should be in alphabetical order.
```go
go 1.19
go 1.20
use (
./a_module
./another_module
Expand Down

0 comments on commit e2db4f7

Please sign in to comment.