diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-05-18 23:11:39 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-05-19 05:17:05 +0800 |
commit | c851cd0481b557ef0a18c0bfa13cbe2ab0abf716 (patch) | |
tree | 2c8fa15a55dd23506339313b610b7c51251289a2 /docs/frequently-asked-questions.rst | |
parent | a8164eb5d72f01b44d5c83ce1b0d9650dc54b04c (diff) | |
download | dexon-solidity-c851cd0481b557ef0a18c0bfa13cbe2ab0abf716.tar dexon-solidity-c851cd0481b557ef0a18c0bfa13cbe2ab0abf716.tar.gz dexon-solidity-c851cd0481b557ef0a18c0bfa13cbe2ab0abf716.tar.bz2 dexon-solidity-c851cd0481b557ef0a18c0bfa13cbe2ab0abf716.tar.lz dexon-solidity-c851cd0481b557ef0a18c0bfa13cbe2ab0abf716.tar.xz dexon-solidity-c851cd0481b557ef0a18c0bfa13cbe2ab0abf716.tar.zst dexon-solidity-c851cd0481b557ef0a18c0bfa13cbe2ab0abf716.zip |
Corrected capitalisation of symbol names
Diffstat (limited to 'docs/frequently-asked-questions.rst')
-rw-r--r-- | docs/frequently-asked-questions.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/frequently-asked-questions.rst b/docs/frequently-asked-questions.rst index ff4d6fc0..65b5afdf 100644 --- a/docs/frequently-asked-questions.rst +++ b/docs/frequently-asked-questions.rst @@ -179,7 +179,7 @@ Mappings are already syntactically similar to arrays as they are, therefore it d An example of this would be:: - contract c { + contract C { struct myStruct { uint someNumber; string someString; @@ -218,7 +218,7 @@ Example:: contract C { function f() returns (uint8[5]) { - string[4] memory AdaArr = ["This", "is", "an", "array"]; + string[4] memory adaArr = ["This", "is", "an", "array"]; return ([1, 2, 3, 4, 5]); } } @@ -360,7 +360,7 @@ Examples:: S public x = S(1, 2); string name = "Ada"; - string[4] memory AdaArr = ["This", "is", "an", "array"]; + string[4] memory adaArr = ["This", "is", "an", "array"]; } |