Merge branch 'syntax-test' into 'dev'

Syntax test

See merge request ligolang/ligo!504
This commit is contained in:
Sander 2020-03-16 22:34:50 +00:00
commit 24197f594e

View File

@ -12,12 +12,9 @@ A lazily deserialized map that's intended to store large amounts of data.
The gast costs of deserialized maps are higher than standard maps as data is lazily deserialized. The gast costs of deserialized maps are higher than standard maps as data is lazily deserialized.
<SyntaxTitle syntax="pascaligo"> <SyntaxTitle syntax="pascaligo">
type big_map (key, value) type big_map (key, value)
</SyntaxTitle> </SyntaxTitle>
<SyntaxTitle syntax="cameligo"> <SyntaxTitle syntax="cameligo">
type ('key, 'value) big_map type ('key, 'value) big_map
</SyntaxTitle> </SyntaxTitle>