aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLefteris Karapetsas <lefteris@refu.co>2014-12-03 20:50:04 +0800
committerLefteris Karapetsas <lefteris@refu.co>2014-12-03 20:50:04 +0800
commitd0758ccf1e07b162a894b5901c863a6bfa4a4636 (patch)
tree2bbf84a7774fa920f1a7f436510aad87999683c7
parent0cc271fae9101ac27dad3491020a3b599d533254 (diff)
downloaddexon-solidity-d0758ccf1e07b162a894b5901c863a6bfa4a4636.tar
dexon-solidity-d0758ccf1e07b162a894b5901c863a6bfa4a4636.tar.gz
dexon-solidity-d0758ccf1e07b162a894b5901c863a6bfa4a4636.tar.bz2
dexon-solidity-d0758ccf1e07b162a894b5901c863a6bfa4a4636.tar.lz
dexon-solidity-d0758ccf1e07b162a894b5901c863a6bfa4a4636.tar.xz
dexon-solidity-d0758ccf1e07b162a894b5901c863a6bfa4a4636.tar.zst
dexon-solidity-d0758ccf1e07b162a894b5901c863a6bfa4a4636.zip
Separate user and dev natspec documentation
- plus other small changes according to the spec
-rw-r--r--main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index 6ca130a7..29239a71 100644
--- a/main.cpp
+++ b/main.cpp
@@ -136,7 +136,7 @@ int main(int argc, char** argv)
cout << eth::disassemble(compiler.getBytecode()) << endl;
cout << "Binary: " << toHex(compiler.getBytecode()) << endl;
cout << "Interface specification: " << compiler.getInterface() << endl;
- cout << "Natspec documentation: " << compiler.getDocumentation() << endl;
+ cout << "Natspec user documentation: " << compiler.getUserDocumentation() << endl;
return 0;
}