Update of /cvsroot/asterisk-java/asterisk-java/xdocs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9128/xdocs
Modified Files:
tutorial.xml
Log Message:
Fixed title
Fixed variable naming in HelloEvents.main()
Index: tutorial.xml
===================================================================
RCS file: /cvsroot/asterisk-java/asterisk-java/xdocs/tutorial.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -p -r1.7 -r1.8
--- tutorial.xml 16 Mar 2005 09:54:05 -0000 1.7
+++ tutorial.xml 16 Mar 2005 10:52:11 -0000 1.8
@@ -20,7 +20,7 @@
<document>
<properties>
<author email="srt at users.sourceforge.net">Stefan Reuter</author>
- <title>Samples</title>
+ <title>Tutorial</title>
</properties>
<meta name="keywords" content="Asterisk,asterisk,Java,java,Manager API,FastAGI,AGI,tutorial,example"/>
<body>
@@ -333,10 +333,10 @@ public class HelloEvents implements Mana
public static void main(String[] args) throws Exception
{
- HelloEvents helloManager;
+ HelloEvents helloEvents;
- helloManager = new HelloEvents();
- helloManager.run();
+ helloEvents = new HelloEvents();
+ helloEvents.run();
}
}
]]></source>
|