aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2016-07-21 20:33:20 +0800
committerGitHub <noreply@github.com>2016-07-21 20:33:20 +0800
commitf5ffb56f2d63ea61827fc3604e6c6ddd3f8d1106 (patch)
treea2441b018f4104e111eb537b1972ac1f2638aa91
parent077c8ad83d8efa3e5fbd334ab0d0135e1f4e5e3e (diff)
parentb8d75340af3cc19f141361495f08d578a60a0c69 (diff)
downloaddexon-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.rst1
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!