Separate user and dev natspec documentation

- plus other small changes according to the spec
This commit is contained in:
Lefteris Karapetsas 2014-12-03 13:50:04 +01:00
parent 0cc271fae9
commit d0758ccf1e

View File

@ -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;
}