Docs: Fix return value type in Auction example (#511)

This commit is contained in:
Denis Davidyuk
2024-08-12 11:02:29 +04:00
committed by GitHub
parent 83dcc6dbc4
commit 46a307432f
+2 -2
View File
@@ -687,8 +687,8 @@ Example usage:
``` ```
payable contract interface Auction = payable contract interface Auction =
entrypoint init : (int, string) => void entrypoint init : (int, string) => void
stateful payable entrypoint buy : (int) => () stateful payable entrypoint buy : (int) => unit
stateful entrypoint sell : (int) => () stateful entrypoint sell : (int) => unit
main contract Market = main contract Market =
type state = list(Auction) type state = list(Auction)