Docs: Fix return value type in Auction example (#511)
This commit is contained in:
parent
83dcc6dbc4
commit
46a307432f
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user