aboutsummaryrefslogtreecommitdiffstats
path: root/docs/security-considerations.rst
diff options
context:
space:
mode:
authorD-Nice <D-Nice@users.noreply.github.com>2016-10-04 05:28:03 +0800
committerGitHub <noreply@github.com>2016-10-04 05:28:03 +0800
commitb4c2880bff09c25544aa98f01a4027600fef1062 (patch)
treefe65ab4ff3a497487e7d28672bac3801cc4f533d /docs/security-considerations.rst
parentd5cfb17b32147e950a689a507e0d5487dece7e8a (diff)
downloaddexon-solidity-b4c2880bff09c25544aa98f01a4027600fef1062.tar.gz
dexon-solidity-b4c2880bff09c25544aa98f01a4027600fef1062.tar.zst
dexon-solidity-b4c2880bff09c25544aa98f01a4027600fef1062.zip
Typo Fix
On line 126, though of changed to thought of.
Diffstat (limited to 'docs/security-considerations.rst')
-rw-r--r--docs/security-considerations.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/security-considerations.rst b/docs/security-considerations.rst
index a2f4ec4c..3e7695c8 100644
--- a/docs/security-considerations.rst
+++ b/docs/security-considerations.rst
@@ -123,7 +123,7 @@ Sending and Receiving Ether
``addr.call.value(x)()``. This is essentially the same as ``addr.send(x)``,
only that it forwards all remaining gas and opens up the ability for the
recipient to perform more expensive actions. This might include calling back
- into the sending contract or other state changes you might not have though of.
+ into the sending contract or other state changes you might not have thought of.
So it allows for great flexibility for honest users but also for malicious actors.
- If you want to send Ether using ``address.send``, there are certain details to be aware of: