diff options
author | chriseth <c@ethdev.com> | 2015-03-06 22:40:02 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-03-06 22:40:02 +0800 |
commit | 2650703ecef1f08f3669f27d9f872ea24f698679 (patch) | |
tree | 0db6a67a3306ea262718d58f1a12e65eafebef01 | |
parent | e6c778e740bfdbca0b5d6f48f0f053a16335887e (diff) | |
download | dexon-solidity-2650703ecef1f08f3669f27d9f872ea24f698679.tar dexon-solidity-2650703ecef1f08f3669f27d9f872ea24f698679.tar.gz dexon-solidity-2650703ecef1f08f3669f27d9f872ea24f698679.tar.bz2 dexon-solidity-2650703ecef1f08f3669f27d9f872ea24f698679.tar.lz dexon-solidity-2650703ecef1f08f3669f27d9f872ea24f698679.tar.xz dexon-solidity-2650703ecef1f08f3669f27d9f872ea24f698679.tar.zst dexon-solidity-2650703ecef1f08f3669f27d9f872ea24f698679.zip |
Typo
-rw-r--r-- | SolidityEndToEndTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SolidityEndToEndTest.cpp b/SolidityEndToEndTest.cpp index ab6e572f..ae241705 100644 --- a/SolidityEndToEndTest.cpp +++ b/SolidityEndToEndTest.cpp @@ -3019,7 +3019,7 @@ BOOST_AUTO_TEST_CASE(array_copy_calldata_storage) m_data = a; m_data_dyn = a; m_byte_data = b; - return b[3][1]; // note that access and declaration[ are reversed to each other + return b[3][1]; // note that access and declaration are reversed to each other } function retrieve() returns (uint a, uint b, uint c, uint d, uint e, uint f, uint g) { a = m_data.length; |