diff options
author | RJ Catalano <catalanor0220@gmail.com> | 2016-01-12 13:41:20 +0800 |
---|---|---|
committer | RJ Catalano <catalanor0220@gmail.com> | 2016-01-12 13:41:20 +0800 |
commit | c45593a44480f846302fdb652e23bd47988fba84 (patch) | |
tree | 84226edd9239da911335f93641e5046766f2e55a /docs/frequently-asked-questions.rst | |
parent | b230fe19052307d1b71372599ccaf8e1440e1473 (diff) | |
download | dexon-solidity-c45593a44480f846302fdb652e23bd47988fba84.tar.gz dexon-solidity-c45593a44480f846302fdb652e23bd47988fba84.tar.zst dexon-solidity-c45593a44480f846302fdb652e23bd47988fba84.zip |
clarification on dynamic arrays, switcheroo on typepointer, and a documentation test added
Diffstat (limited to 'docs/frequently-asked-questions.rst')
-rw-r--r-- | docs/frequently-asked-questions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/frequently-asked-questions.rst b/docs/frequently-asked-questions.rst index 919ee54e..f87b785d 100644 --- a/docs/frequently-asked-questions.rst +++ b/docs/frequently-asked-questions.rst @@ -318,7 +318,7 @@ Can state variables be initialized in-line? =========================================== Yes, this is possible for all types (even for structs). However, for arrays it -should be noted that you must declare them as static memory arrays. Futhermore, multi dimensional arrays cannot be declared inline. +should be noted that you must declare them as static memory arrays. Examples:: |