aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-01-26 23:00:52 +0800
committerGitHub <noreply@github.com>2018-01-26 23:00:52 +0800
commitbbad48bb347fe29a7418afbe00c4d4bb73674a90 (patch)
treeb622612cace7bddff936b89178962bfc6cb1fcac
parente7afde9587ff3b8d823292e64e119bd27ff83743 (diff)
parentb4fb7255dd3d05d5430a8b3f8b3a80fae2e4954d (diff)
downloaddexon-solidity-bbad48bb347fe29a7418afbe00c4d4bb73674a90.tar
dexon-solidity-bbad48bb347fe29a7418afbe00c4d4bb73674a90.tar.gz
dexon-solidity-bbad48bb347fe29a7418afbe00c4d4bb73674a90.tar.bz2
dexon-solidity-bbad48bb347fe29a7418afbe00c4d4bb73674a90.tar.lz
dexon-solidity-bbad48bb347fe29a7418afbe00c4d4bb73674a90.tar.xz
dexon-solidity-bbad48bb347fe29a7418afbe00c4d4bb73674a90.tar.zst
dexon-solidity-bbad48bb347fe29a7418afbe00c4d4bb73674a90.zip
Merge pull request #3439 from hyperfekt/lib-inline-clarification
fixes #1209
-rw-r--r--docs/contracts.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst
index 77715e93..afc32b16 100644
--- a/docs/contracts.rst
+++ b/docs/contracts.rst
@@ -1115,7 +1115,7 @@ if the library were a base contract. Of course, calls to internal functions
use the internal calling convention, which means that all internal types
can be passed and memory types will be passed by reference and not copied.
To realize this in the EVM, code of internal library functions
-and all functions called from therein will be pulled into the calling
+and all functions called from therein will at compile time be pulled into the calling
contract, and a regular ``JUMP`` call will be used instead of a ``DELEGATECALL``.
.. index:: using for, set