Doc tweaks. git-svn-id: https://google-web-toolkit.googlecode.com/svn/releases/1.6@4457 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/user/tools/project.ant.xmlsrc b/user/src/com/google/gwt/user/tools/project.ant.xmlsrc index 33912a6..9b6e4a9 100644 --- a/user/src/com/google/gwt/user/tools/project.ant.xmlsrc +++ b/user/src/com/google/gwt/user/tools/project.ant.xmlsrc
@@ -3,20 +3,20 @@ <path id="project.class.path"> <pathelement location="war/WEB-INF/classes"/> - <pathelement path="@gwtUserPath"/> + <pathelement location="@gwtUserPath"/> <!-- Add any additional non-server libs (such as JUnit) --> <fileset dir="war/WEB-INF/lib"> <include name="**/*.jar"/> </fileset> </path> - <target name="libs" description="Copy libs to the war folder"> + <target name="libs" description="Copy libs to WEB-INF/lib"> <mkdir dir="war/WEB-INF/lib" /> <copy todir="war/WEB-INF/lib" file="@gwtServletPath" /> <!-- Add any additional server libs that need to be copied --> </target> - <target name="javac" depends="libs" description="Compile project to WEB-INF/classes"> + <target name="javac" depends="libs" description="Compile java source"> <mkdir dir="war/WEB-INF/classes"/> <javac srcdir="src" includes="**" encoding="utf-8" destdir="war/WEB-INF/classes" @@ -27,7 +27,7 @@ </target> <!-- can add additional arguments like -logLevel INFO or -style PRETTY --> - <target name="gwtc" depends="javac" description="Compile to JavaScript"> + <target name="gwtc" depends="javac" description="GWT compile to JavaScript"> <java failonerror="true" fork="true" classname="@compileClass"> <classpath> <pathelement location="src"/> @@ -40,7 +40,7 @@ </java> </target> - <target name="hosted" depends="javac" description="Run the app hosted mode"> + <target name="hosted" depends="javac" description="Run hosted mode"> <java failonerror="true" fork="true" classname="@shellClass"> <classpath> <pathelement location="src"/>