diff options
-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(); |