Change not existing mutez type to existing tez type

This commit is contained in:
Sander Spies 2020-03-31 17:00:17 +02:00
parent 9cd750442a
commit 0d46be7425
2 changed files with 10 additions and 10 deletions

View File

@ -21,13 +21,13 @@ type timestamp
A date in the real world. A date in the real world.
<SyntaxTitle syntax="pascaligo"> <SyntaxTitle syntax="pascaligo">
type mutez type tez
</SyntaxTitle> </SyntaxTitle>
<SyntaxTitle syntax="cameligo"> <SyntaxTitle syntax="cameligo">
type mutez type tez
</SyntaxTitle> </SyntaxTitle>
<SyntaxTitle syntax="reasonligo"> <SyntaxTitle syntax="reasonligo">
type mutez type tez
</SyntaxTitle> </SyntaxTitle>
A specific type for tokens. A specific type for tokens.
@ -83,13 +83,13 @@ type chain_id
The identifier of a chain, used to indicate test or main chains. The identifier of a chain, used to indicate test or main chains.
<SyntaxTitle syntax="pascaligo"> <SyntaxTitle syntax="pascaligo">
function balance : mutez function balance : tez
</SyntaxTitle> </SyntaxTitle>
<SyntaxTitle syntax="cameligo"> <SyntaxTitle syntax="cameligo">
val balance : mutez val balance : tez
</SyntaxTitle> </SyntaxTitle>
<SyntaxTitle syntax="reasonligo"> <SyntaxTitle syntax="reasonligo">
let balance: mutez let balance: tez
</SyntaxTitle> </SyntaxTitle>
Get the balance for the contract. Get the balance for the contract.
@ -263,13 +263,13 @@ let not_tomorrow: bool = (Tezos.now == in_24_hrs);
<SyntaxTitle syntax="pascaligo"> <SyntaxTitle syntax="pascaligo">
function amount : mutez function amount : tez
</SyntaxTitle> </SyntaxTitle>
<SyntaxTitle syntax="cameligo"> <SyntaxTitle syntax="cameligo">
val amount : mutez val amount : tez
</SyntaxTitle> </SyntaxTitle>
<SyntaxTitle syntax="reasonligo"> <SyntaxTitle syntax="reasonligo">
let amount: mutez let amount: tez
</SyntaxTitle> </SyntaxTitle>
Get the amount of tez provided by the sender to complete this Get the amount of tez provided by the sender to complete this

View File

@ -823,7 +823,7 @@ example, in verbose style:
type store is type store is
record record
goal : mutez; // Millionth of a tez goal : tez;
deadline : timestamp; deadline : timestamp;
backers : map (address, nat); backers : map (address, nat);
funded : bool funded : bool