aboutsummaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorTuncer Ayaz <[email protected]>2013-03-05 20:56:33 +0100
committerTuncer Ayaz <[email protected]>2013-03-05 21:00:33 +0100
commit9e4a37c95739a524db9f7b8f7f64fa3c25264879 (patch)
tree9a154ff65767c38718fd60f3cc06684bfa5896af /system
parent8deb96fb1d017307e22d2ab88968b9ef9f1b71d0 (diff)
downloadotp-9e4a37c95739a524db9f7b8f7f64fa3c25264879.tar.gz
otp-9e4a37c95739a524db9f7b8f7f64fa3c25264879.tar.bz2
otp-9e4a37c95739a524db9f7b8f7f64fa3c25264879.zip
Fix doc typos for R16B01
Diffstat (limited to 'system')
-rw-r--r--system/doc/design_principles/fsm.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/doc/design_principles/fsm.xml b/system/doc/design_principles/fsm.xml
index edb2e20605..bd19b88e2d 100644
--- a/system/doc/design_principles/fsm.xml
+++ b/system/doc/design_principles/fsm.xml
@@ -87,7 +87,7 @@ locked({button, Digit}, {SoFar, Code}) ->
case [Digit|SoFar] of
Code ->
do_unlock(),
- {next_state, open, {[], Code}, 3000};
+ {next_state, open, {[], Code}, 30000};
Incomplete when length(Incomplete)<length(Code) ->
{next_state, locked, {Incomplete, Code}};
_Wrong ->
@@ -203,7 +203,7 @@ open(timeout, State) ->
<section>
<title>Timeouts</title>
- <p>When a correct code has been givened, the door is unlocked and
+ <p>When a correct code has been given, the door is unlocked and
the following tuple is returned from <c>locked/2</c>:</p>
<code type="none">
{next_state, open, {[], Code}, 30000};</code>