diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/using-the-compiler.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/using-the-compiler.rst b/docs/using-the-compiler.rst index f2d6b858..ab8f3d82 100644 --- a/docs/using-the-compiler.rst +++ b/docs/using-the-compiler.rst @@ -177,11 +177,11 @@ Output Description // Optional: not present if no errors/warnings were encountered errors: [ { - // Optional - file: "sourceFile.sol", // Optional: Location within the source file. - sourceLocation: [ - { start: 0, end: 100 }, + sourceLocation: { + file: "sourceFile.sol", + start: 0, + end: 100 ], // Mandatory: Error type, such as "TypeError", "InternalCompilerError", "Exception", etc type: "TypeError", |