diff options
author | Haden Wasserbaech <spartanhaden@gmail.com> | 2021-10-10 10:32:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-10 19:32:14 +0200 |
commit | 1fb1ad6b5f183ac2b6763e7992129c667836e6b1 (patch) | |
tree | dff6105b88e752a268f0145e4695cb68b5bcfcb2 | |
parent | 7e5abe2aaf31e079eb97c4b7e25e543db4ecff4c (diff) |
Fixes multidimensional array (#4239)
-rw-r--r-- | pt-br/solidity-pt.html.markdown | 2 | ||||
-rw-r--r-- | solidity.html.markdown | 2 | ||||
-rw-r--r-- | zh-cn/solidity-cn.html.markdown | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/pt-br/solidity-pt.html.markdown b/pt-br/solidity-pt.html.markdown index d4555fa7..c77ff298 100644 --- a/pt-br/solidity-pt.html.markdown +++ b/pt-br/solidity-pt.html.markdown @@ -259,7 +259,7 @@ nomes.length; // pega o tamanho nomes.length = 1; // tamanhos pode ser alterados (para arrays dinâmicos) // arrays multidimensionais -uint x[][5]; // array com 5 arrays dinâmicos como elementos (ordem da maioria +uint[][5] x; // array com 5 arrays dinâmicos como elementos (ordem da maioria // das linguagens) // Dicionários (qualquer tipo para qualquer tipo) diff --git a/solidity.html.markdown b/solidity.html.markdown index 251e9008..5f8ef407 100644 --- a/solidity.html.markdown +++ b/solidity.html.markdown @@ -295,7 +295,7 @@ names.length; // get length names.length = 1; // lengths can be set (for dynamic arrays in storage only) // multidimensional array -uint x[][5]; // arr with 5 dynamic array elements (opp order of most languages) +uint[][5] x; // arr with 5 dynamic array elements (opp order of most languages) // Dictionaries (any type to any other type) mapping (string => uint) public balances; diff --git a/zh-cn/solidity-cn.html.markdown b/zh-cn/solidity-cn.html.markdown index ec684997..12a532bc 100644 --- a/zh-cn/solidity-cn.html.markdown +++ b/zh-cn/solidity-cn.html.markdown @@ -213,7 +213,7 @@ names.length; // 获得数组长度 names.length = 1; // 可以设定长度(仅针对 storage 中的动态数组) // 多维数组 -uint x[][5]; // 5个动态数组元素的数组(和多数语言的顺序相反) +uint[][5] x; // 5个动态数组元素的数组(和多数语言的顺序相反) // 字典类型 (任一类型到其他类型的映射) mapping (string => uint) public balances; |