aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-06-22 19:20:31 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-06-22 19:20:31 +0000
commit7f9debf081308a5c8efbaa93e3a42605f207b2e5 (patch)
tree3b99d56a7b9a356fd608a3b8d8a1f6d1595719d3 /doc
parent8d69998352dc14f56b0c55e6bd8664765d9acaa9 (diff)
fix goto examples (bug #4578)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5973 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/README.ael12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/README.ael b/doc/README.ael
index ec2d7983b..b1b72d837 100755
--- a/doc/README.ael
+++ b/doc/README.ael
@@ -217,30 +217,30 @@ instructions:
};
2 => {
Background(demo-moreinfo);
- goto instructions;
+ goto s|instructions;
};
3 => {
LANGUAGE()=fr;
- goto restart;
+ goto s|restart;
};
500 => {
Playback(demo-abouttotry);
- exten => 500,n,Dial(IAX2/guest@misery.digium.com)
+ Dial(IAX2/guest@misery.digium.com);
Playback(demo-nogo);
- goto instructions;
+ goto s|instructions;
};
600 => {
Playback(demo-echotest);
Echo();
Playback(demo-echodone);
- goto instructions;
+ goto s|instructions;
};
# => {
hangup:
Playback(demo-thanks);
Hangup();
};
- t => goto hangup;
+ t => goto #|hangup;
i => Playback(invalid);
};