aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-07-20 17:12:02 +0800
committerGitHub <noreply@github.com>2018-07-20 17:12:02 +0800
commitd3000e70b2ebe50043fd4c6e12b8cd29b5b75d8b (patch)
tree8944566cdcb364d741a7e8a6169f756de29f5b20
parente3c2f20f6e8c7919a6733fa736a3a222028f213c (diff)
parent14ea11fad09eb3123df896f1af75431cb9e285de (diff)
downloaddexon-solidity-d3000e70b2ebe50043fd4c6e12b8cd29b5b75d8b.tar
dexon-solidity-d3000e70b2ebe50043fd4c6e12b8cd29b5b75d8b.tar.gz
dexon-solidity-d3000e70b2ebe50043fd4c6e12b8cd29b5b75d8b.tar.bz2
dexon-solidity-d3000e70b2ebe50043fd4c6e12b8cd29b5b75d8b.tar.lz
dexon-solidity-d3000e70b2ebe50043fd4c6e12b8cd29b5b75d8b.tar.xz
dexon-solidity-d3000e70b2ebe50043fd4c6e12b8cd29b5b75d8b.tar.zst
dexon-solidity-d3000e70b2ebe50043fd4c6e12b8cd29b5b75d8b.zip
Merge pull request #4533 from ethereum/faq-typo
Fix typo
-rw-r--r--docs/frequently-asked-questions.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/frequently-asked-questions.rst b/docs/frequently-asked-questions.rst
index 36eaf534..0b68d4fb 100644
--- a/docs/frequently-asked-questions.rst
+++ b/docs/frequently-asked-questions.rst
@@ -375,7 +375,7 @@ This is a very interesting question. Suppose that we have a contract field set u
User user2 = user1;
}
-In this case, the mapping of the struct being copied over into the userList is ignored as there is no "list of mapped keys".
+In this case, the mapping of the struct being copied over into ``user2`` is ignored as there is no "list of mapped keys".
Therefore it is not possible to find out which values should be copied over.
How do I initialize a contract with only a specific amount of wei?