diff options
author | chriseth <c@ethdev.com> | 2016-07-21 20:33:20 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-21 20:33:20 +0800 |
commit | f5ffb56f2d63ea61827fc3604e6c6ddd3f8d1106 (patch) | |
tree | a2441b018f4104e111eb537b1972ac1f2638aa91 | |
parent | 077c8ad83d8efa3e5fbd334ab0d0135e1f4e5e3e (diff) | |
parent | b8d75340af3cc19f141361495f08d578a60a0c69 (diff) | |
download | dexon-solidity-f5ffb56f2d63ea61827fc3604e6c6ddd3f8d1106.tar.gz dexon-solidity-f5ffb56f2d63ea61827fc3604e6c6ddd3f8d1106.tar.zst dexon-solidity-f5ffb56f2d63ea61827fc3604e6c6ddd3f8d1106.zip |
Merge pull request #734 from ZhuWeiyang/patch-1
Missing '_' in modifier 'timedTransitions'
-rw-r--r-- | docs/common-patterns.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/common-patterns.rst b/docs/common-patterns.rst index 9096571e..422e2758 100644 --- a/docs/common-patterns.rst +++ b/docs/common-patterns.rst @@ -201,6 +201,7 @@ function finishes. now >= creationTime + 12 days) nextStage(); // The other stages transition by transaction + _ } // Order of the modifiers matters here! |