Skip to content

Commit

Permalink
Docs: Fix return value type in Auction example (#511)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidyuk authored Aug 12, 2024
1 parent 83dcc6d commit 46a3074
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/sophia_stdlib.md
Original file line number Diff line number Diff line change
Expand Up @@ -687,8 +687,8 @@ Example usage:
```
payable contract interface Auction =
entrypoint init : (int, string) => void
stateful payable entrypoint buy : (int) => ()
stateful entrypoint sell : (int) => ()
stateful payable entrypoint buy : (int) => unit
stateful entrypoint sell : (int) => unit
main contract Market =
type state = list(Auction)
Expand Down

0 comments on commit 46a3074

Please sign in to comment.