aboutsummaryrefslogtreecommitdiffstats
path: root/docs/contributing.rst
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-06-13 15:25:45 +0800
committerGitHub <noreply@github.com>2018-06-13 15:25:45 +0800
commit14a7c9f2b904d6bc01e2f65cf15347416bbdc815 (patch)
tree4214a1163f19722eee8dea0fae6e620e1c616a67 /docs/contributing.rst
parentf3530df90553a03958a4239a36c103c1381fe26b (diff)
parentf79efb8dbfc20c36e83000e664df3be326a534d0 (diff)
downloaddexon-solidity-14a7c9f2b904d6bc01e2f65cf15347416bbdc815.tar
dexon-solidity-14a7c9f2b904d6bc01e2f65cf15347416bbdc815.tar.gz
dexon-solidity-14a7c9f2b904d6bc01e2f65cf15347416bbdc815.tar.bz2
dexon-solidity-14a7c9f2b904d6bc01e2f65cf15347416bbdc815.tar.lz
dexon-solidity-14a7c9f2b904d6bc01e2f65cf15347416bbdc815.tar.xz
dexon-solidity-14a7c9f2b904d6bc01e2f65cf15347416bbdc815.tar.zst
dexon-solidity-14a7c9f2b904d6bc01e2f65cf15347416bbdc815.zip
Merge pull request #4290 from ethdemy/typo-bugfix
fix typo
Diffstat (limited to 'docs/contributing.rst')
-rw-r--r--docs/contributing.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/contributing.rst b/docs/contributing.rst
index 6717a8b9..b95cff1a 100644
--- a/docs/contributing.rst
+++ b/docs/contributing.rst
@@ -111,7 +111,7 @@ Example: ``./test/libsolidity/syntaxTests/double_stateVariable_declaration.sol``
A syntax test must contain at least the contract under test itself, followed by the seperator ``----``. The additional comments above are used to describe the
expected compiler errors or warnings. This section can be empty in case that the contract should compile without any errors or warnings.
-In the above example, the state variable ``variable`` was declared twice, which is not allowed. This will result in a ``DeclarationError`` stating that the identifer was already declared.
+In the above example, the state variable ``variable`` was declared twice, which is not allowed. This will result in a ``DeclarationError`` stating that the identifier was already declared.
The tool that is being used for those tests is called ``isoltest`` and can be found under ``./test/tools/``. It is an interactive tool which allows
editing of failing contracts using your prefered text editor. Let's try to break this test by removing the second declaration of ``variable``: