aboutsummaryrefslogtreecommitdiffstats
path: root/docs/frequently-asked-questions.rst
diff options
context:
space:
mode:
authorWilliam Entriken <github.com@phor.net>2018-01-15 02:56:02 +0800
committerGitHub <noreply@github.com>2018-01-15 02:56:02 +0800
commitb1d99587e08e60465aac30c749d9965018ff175f (patch)
treef3a27747dd2268314785d28a0c8b47f709920ac3 /docs/frequently-asked-questions.rst
parent0c20b6da6b6c5f8fa72c389648b5da54c13945f9 (diff)
downloaddexon-solidity-b1d99587e08e60465aac30c749d9965018ff175f.tar
dexon-solidity-b1d99587e08e60465aac30c749d9965018ff175f.tar.gz
dexon-solidity-b1d99587e08e60465aac30c749d9965018ff175f.tar.bz2
dexon-solidity-b1d99587e08e60465aac30c749d9965018ff175f.tar.lz
dexon-solidity-b1d99587e08e60465aac30c749d9965018ff175f.tar.xz
dexon-solidity-b1d99587e08e60465aac30c749d9965018ff175f.tar.zst
dexon-solidity-b1d99587e08e60465aac30c749d9965018ff175f.zip
Use CapWords style for example
Follows recommendation in https://github.com/ethereum/solidity/pull/3392
Diffstat (limited to 'docs/frequently-asked-questions.rst')
-rw-r--r--docs/frequently-asked-questions.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/frequently-asked-questions.rst b/docs/frequently-asked-questions.rst
index 5343b848..7c934041 100644
--- a/docs/frequently-asked-questions.rst
+++ b/docs/frequently-asked-questions.rst
@@ -433,14 +433,14 @@ What happens to a ``struct``'s mapping when copying over a ``struct``?
This is a very interesting question. Suppose that we have a contract field set up like such::
- struct user {
+ struct User {
mapping(string => string) comments;
}
function somefunction public {
- user user1;
+ User user1;
user1.comments["Hello"] = "World";
- user user2 = user1;
+ 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".