diff options
author | Emilio Almansi <ealmansi@gmail.com> | 2018-02-17 01:40:17 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-02-19 23:45:38 +0800 |
commit | 47a0e374e215c66324b291a5e6bede4f275c5f0f (patch) | |
tree | bc0e1e51485ab871f273d34c8ef554530a8aab0b | |
parent | ca6957da37454ddd474b1feeaf02f7d06cba06b0 (diff) | |
download | dexon-solidity-47a0e374e215c66324b291a5e6bede4f275c5f0f.tar.gz dexon-solidity-47a0e374e215c66324b291a5e6bede4f275c5f0f.tar.zst dexon-solidity-47a0e374e215c66324b291a5e6bede4f275c5f0f.zip |
Fix indentation.
-rw-r--r-- | test/libsolidity/ASTJSON.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/libsolidity/ASTJSON.cpp b/test/libsolidity/ASTJSON.cpp index 808a747a..a165f7a9 100644 --- a/test/libsolidity/ASTJSON.cpp +++ b/test/libsolidity/ASTJSON.cpp @@ -239,9 +239,9 @@ BOOST_AUTO_TEST_CASE(documentation) ); c.addSource("c", "contract C {" - " /** Some comment on Evt.*/ event Evt();" - " /** Some comment on mod.*/ modifier mod() { _; }" - " /** Some comment on fn.*/ function fn() public {}" + " /** Some comment on Evt.*/ event Evt();" + " /** Some comment on mod.*/ modifier mod() { _; }" + " /** Some comment on fn.*/ function fn() public {}" "}" ); c.parseAndAnalyze(); |